##// END OF EJS Templates
Fixed chaining of promises with 'Then' method
Fixed chaining of promises with 'Then' method

File last commit:

r55:c0bf853aa04f default
r135:656815cb7147 v2
Show More
JSONElementContext.cs
16 lines | 303 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
}
}