Mercurial > pub > ImplabNet
annotate Implab/Automaton/RegularExpressions/IVisitor.cs @ 178:d5c5db0335ee ref20160224
working on JSON parser
author | cin |
---|---|
date | Wed, 23 Mar 2016 19:51:45 +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 } |