##// END OF EJS Templates
working on promises
working on promises

File last commit:

r243:b1e0ffdf3451 v3
r243:b1e0ffdf3451 v3
Show More
PromiseState.cs
8 lines | 111 B | text/x-csharp | CSharpLexer
namespace Implab {
public enum PromiseState {
Pending,
Resolved,
Rejected
}
}