annotate Implab/Automaton/AutomatonConst.cs @ 265:74e048cbaac8 v3 v3.0.10

Restored lost JsonXmlCaseTransform from version 2.1
author cin
date Mon, 16 Apr 2018 19:43:18 +0300
parents 302ca905c19e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
178
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
1 
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
2 namespace Implab.Automaton {
179
cin
parents: 178
diff changeset
3 public static class AutomatonConst {
236
302ca905c19e JsonReader optimizations
cin
parents: 179
diff changeset
4 public const int UnreachableState = -1;
178
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
5
236
302ca905c19e JsonReader optimizations
cin
parents: 179
diff changeset
6 public const int UnclassifiedInput = 0;
178
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
7 }
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
8 }
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
9