##// END OF EJS Templates
DRAFT: refactoring
DRAFT: refactoring

File last commit:

r141:0fa293bb1351 v2
r144:8c0b95069066 v2
Show More
JSONElementContext.cs
17 lines | 320 B | text/x-csharp | CSharpLexer
/ Implab / JSON / JSONElementContext.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.JSON {
/// <summary>
/// internal
/// </summary>
public enum JSONElementContext {
None,
Object,
Array,
Closed
}
}