annotate Implab/Formats/JSON/JSONElementContext.cs @ 176:0c3c69fe225b ref20160224

rewritten the text scanner
author cin
date Tue, 22 Mar 2016 18:58:40 +0300
parents e227e78d72e4
children d5c5db0335ee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
e227e78d72e4 DFA refactoring
cin
parents: 163
diff changeset
1 namespace Implab.Formats.JSON {
163
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
2 /// <summary>
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
3 /// internal
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
4 /// </summary>
165
e227e78d72e4 DFA refactoring
cin
parents: 163
diff changeset
5 enum JSONElementContext {
163
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
6 None,
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
7 Object,
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
8 Array,
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
9 Closed
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
10 }
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
11 }