annotate Implab/Automaton/RegularExpressions/IVisitor.cs @ 180:c32688129f14
ref20160224
refactoring complete, JSONParser rewritten
author |
cin |
date |
Thu, 24 Mar 2016 02:30:46 +0300 |
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 }
|