annotate Implab/Automaton/AutomatonConst.cs @ 209:a867536c68fc v2

Bound promise to CancellationToken Added new states to ExecutionSate enum. Added Safe.Guard() method to handle cleanup of the result of the promise
author cin
date Wed, 16 Nov 2016 03:06:08 +0300
parents 478ef706906a
children 302ca905c19e
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 {
178
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
4 public const int UNREACHABLE_STATE = -1;
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
5
d5c5db0335ee working on JSON parser
cin
parents:
diff changeset
6 public const int UNCLASSIFIED_INPUT = 0;
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