##// END OF EJS Templates
refactoring
refactoring

File last commit:

r177:a0ff6a0e9c44 ref20160224
r177:a0ff6a0e9c44 ref20160224
Show More
IVisitorT.cs
8 lines | 321 B | text/x-csharp | CSharpLexer
namespace Implab.Automaton.RegularExpressions {
/// <summary>
/// Интерфейс обходчика синтаксического дерева регулярного выражения
/// </summary>
public interface IVisitor<T> : IVisitor {
void Visit(EndToken<T> token);
}
}