annotate Implab/Automaton/RegularExpressions/IVisitor.cs @ 268:0be8a6ae8307
v3
Implemented typereference parser
author |
cin |
date |
Sun, 22 Apr 2018 15:29:10 +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 }
|