##// END OF EJS Templates
fixed DFA optimization, JSON is fully functional
fixed DFA optimization, JSON is fully functional

File last commit:

r180:c32688129f14 ref20160224
r183:4f82e0f161c3 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
}
}