annotate Implab/Formats/JSON/JSONElementContext.cs @ 163:419aa51b04fd ref20160224

JSON moved to Formats namespace Working in RegularDFA
author cin
date Wed, 24 Feb 2016 20:12:52 +0300
parents
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 }