annotate Implab/Automaton/RegularExpressions/IVisitor.cs @ 262:f1696cdc3d7a
v3 v3.0.8
Added IInitializable.Initialize() overload
Added IRunnable.Start(), IRunnable.Start() overloads
Fixed cancellation of the current operation when Stop() is called
More tests
author
cin
date
Mon, 16 Apr 2018 02:12:39 +0300 (2018-04-15)
parents
a0ff6a0e9c44
children
rev
line source
162
+ − 1 namespace Implab.Automaton.RegularExpressions {
+ − 2 /// <summary>
+ − 3 /// Интерфейс обходчика синтаксического дерева регулярного выражения
+ − 4 /// </summary>
177
+ − 5 public interface IVisitor {
+ − 6 void Visit(AltToken token);
+ − 7 void Visit(StarToken token);
+ − 8 void Visit(CatToken token);
+ − 9 void Visit(EmptyToken token);
+ − 10 void Visit(EndToken token);
+ − 11 void Visit(SymbolToken token);
162
+ − 12 }
+ − 13 }