annotate Implab/Automaton/RegularExpressions/IVisitor.cs @ 227:8d5de4eb9c2c
v2
Reimplemented JsonXmlReader, added support for null values: JSON null values are
mapped to empty nodes with 'xsi:nil' attribute set to 'true'
author |
cin |
date |
Sat, 09 Sep 2017 03:53:13 +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 }
|