comparison Implab/Automaton/AutomatonConst.cs @ 178:d5c5db0335ee ref20160224

working on JSON parser
author cin
date Wed, 23 Mar 2016 19:51:45 +0300
parents
children 478ef706906a
comparison
equal deleted inserted replaced
177:a0ff6a0e9c44 178:d5c5db0335ee
1 
2 namespace Implab.Automaton {
3 public static class DFAConst {
4 public const int UNREACHABLE_STATE = -1;
5
6 public const int UNCLASSIFIED_INPUT = 0;
7 }
8 }
9