##// END OF EJS Templates
DFA refactoring
DFA refactoring

File last commit:

r165:e227e78d72e4 ref20160224
r165:e227e78d72e4 ref20160224
Show More
JSONElementContext.cs
11 lines | 198 B | text/x-csharp | CSharpLexer
namespace Implab.Formats.JSON {
/// <summary>
/// internal
/// </summary>
enum JSONElementContext {
None,
Object,
Array,
Closed
}
}