annotate Implab/Formats/JSON/JSONElementContext.cs @ 164:ec35731ae299 ref20160224

Almost complete DFA refactoring
author cin
date Thu, 25 Feb 2016 02:11:13 +0300
parents 419aa51b04fd
children e227e78d72e4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
163
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
1 using System;
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
2 using System.Collections.Generic;
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
3 using System.Linq;
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
4 using System.Text;
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
5 using System.Threading.Tasks;
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
6
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
7 namespace Implab.JSON {
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
8 /// <summary>
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
9 /// internal
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
10 /// </summary>
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
11 public enum JSONElementContext {
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
12 None,
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
13 Object,
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
14 Array,
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
15 Closed
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
16 }
419aa51b04fd JSON moved to Formats namespace
cin
parents:
diff changeset
17 }