annotate Implab/Automaton/AutomatonConst.cs @ 196:40d7fed4a09e

fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
author cin
date Mon, 29 Aug 2016 23:15:51 +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