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 |
rev |
line source |
163
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3 using System.Linq;
|
|
4 using System.Text;
|
|
5 using System.Threading.Tasks;
|
|
6
|
|
7 namespace Implab.JSON {
|
|
8 /// <summary>
|
|
9 /// internal
|
|
10 /// </summary>
|
|
11 public enum JSONElementContext {
|
|
12 None,
|
|
13 Object,
|
|
14 Array,
|
|
15 Closed
|
|
16 }
|
|
17 }
|