annotate Implab/Automaton/AutomatonConst.cs @ 255:b00441e04738 v3

Adde workaround to the behaviour of the logical operations stack in conjuction with async/await methods
author cin
date Wed, 04 Apr 2018 15:38:48 +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