##// END OF EJS Templates
pretty print DFA, the minimization is still buggy
pretty print DFA, the minimization is still buggy

File last commit:

r144:8c0b95069066 v2
r182:76e8f2ba12b8 ref20160224
Show More
Promise.cs
22 lines | 434 B | text/x-csharp | CSharpLexer
using System;
using Implab.Parallels;
namespace Implab {
public class Promise : AbstractPromise, IDeferred {
public static readonly Promise SUCCESS;
static Promise() {
SUCCESS = new Promise();
SUCCESS.Resolve();
}
public void Resolve() {
SetResult();
}
public void Reject(Exception error) {
SetError(error);
}
}
}