annotate Implab/Formats/JSON/JSONElementContext.cs @ 215:fe5101083150 v2

Fixed InteractiveListener to support OLE and clipboard. Safe.Dispose methods made more convinent
author cin
date Fri, 21 Apr 2017 14:27:17 +0300
parents c32688129f14
children
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,
180
c32688129f14 refactoring complete, JSONParser rewritten
cin
parents: 178
diff changeset
8 Array,
c32688129f14 refactoring complete, JSONParser rewritten
cin
parents: 178
diff changeset
9 Closed
163
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
10 }
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
11 }