##// END OF EJS Templates
rewritten the text scanner
rewritten the text scanner

File last commit:

r156:97fbbf816844 v2
r176:0c3c69fe225b ref20160224
Show More
ExecutionState.cs
13 lines | 241 B | text/x-csharp | CSharpLexer
namespace Implab.Components {
public enum ExecutionState {
Reserved = 0,
Uninitialized,
Ready,
Starting,
Running,
Stopping,
Stopped,
Disposed,
Failed
}
}