##// END OF EJS Templates
JSON moved to Formats namespace...
JSON moved to Formats namespace Working in RegularDFA

File last commit:

r163:419aa51b04fd ref20160224
r163:419aa51b04fd ref20160224
Show More
JSONElementContext.cs
17 lines | 320 B | text/x-csharp | CSharpLexer
/ Implab / Formats / JSON / JSONElementContext.cs
cin
JSON moved to Formats namespace...
r163 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
}
}