##// END OF EJS Templates
RunnableComponent.Dispose(bool,Exception) changed to standart Dispose(bool)...
RunnableComponent.Dispose(bool,Exception) changed to standart Dispose(bool) IRunnable is now disposable Code cleanups, suppressed some CodeAnalysis warnings

File last commit:

r177:a0ff6a0e9c44 ref20160224
r208:7d07503621fe v2
Show More
EmptyToken.cs
13 lines | 355 B | text/x-csharp | CSharpLexer
cin
DFA refactoring
r162 using Implab;
namespace Implab.Automaton.RegularExpressions {
cin
refactoring
r177 public class EmptyToken: Token {
public override void Accept(IVisitor visitor) {
cin
DFA refactoring
r162 Safe.ArgumentNotNull(visitor, "visitor");
visitor.Visit(this);
}
public override string ToString() {
return "$";
}
}
}