##// END OF EJS Templates
working on JSON parser
working on JSON parser

File last commit:

r178:d5c5db0335ee ref20160224
r178:d5c5db0335ee ref20160224
Show More
JSONElementContext.cs
10 lines | 181 B | text/x-csharp | CSharpLexer
namespace Implab.Formats.JSON {
/// <summary>
/// internal
/// </summary>
enum JSONElementContext {
None,
Object,
Array
}
}