##// END OF EJS Templates
refactoring, moving to dotnercore, simplifying promises
refactoring, moving to dotnercore, simplifying promises

File last commit:

r230:3e26338eb977 v2
r240:fa6cbf4d8841 v3
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
}
}