##// END OF EJS Templates
fixed DFA optimization, JSON is fully functional
fixed DFA optimization, JSON is fully functional

File last commit:

r152:240aa6994018 v2
r183:4f82e0f161c3 ref20160224
Show More
IRunnable.cs
14 lines | 219 B | text/x-csharp | CSharpLexer
using System;
namespace Implab.Components {
public interface IRunnable {
IPromise Start();
IPromise Stop();
ExecutionState State { get; }
Exception LastError { get; }
}
}