##// END OF EJS Templates
renamed Promise.Last -> Promise.On...
renamed Promise.Last -> Promise.On Promise.On doesn't changes Promise.IsExclusive property

File last commit:

r55:c0bf853aa04f default
r104:5f10d54b45df v2
Show More
JSONElementContext.cs
16 lines | 303 B | text/x-csharp | CSharpLexer
/ Implab / JSON / JSONElementContext.cs
cin
Added initial JSON support...
r55 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
}
}