annotate Implab/Automaton/RegularExpressions/IVisitor.cs @ 187:dd4a3590f9c6 ref20160224

Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler Any unhandled OperationCanceledException will cause the promise cancelation
author cin
date Tue, 19 Apr 2016 17:35:20 +0300
parents a0ff6a0e9c44
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
162
0526412bbb26 DFA refactoring
cin
parents:
diff changeset
1 namespace Implab.Automaton.RegularExpressions {
0526412bbb26 DFA refactoring
cin
parents:
diff changeset
2 /// <summary>
0526412bbb26 DFA refactoring
cin
parents:
diff changeset
3 /// Интерфейс обходчика синтаксического дерева регулярного выражения
0526412bbb26 DFA refactoring
cin
parents:
diff changeset
4 /// </summary>
177
a0ff6a0e9c44 refactoring
cin
parents: 162
diff changeset
5 public interface IVisitor {
a0ff6a0e9c44 refactoring
cin
parents: 162
diff changeset
6 void Visit(AltToken token);
a0ff6a0e9c44 refactoring
cin
parents: 162
diff changeset
7 void Visit(StarToken token);
a0ff6a0e9c44 refactoring
cin
parents: 162
diff changeset
8 void Visit(CatToken token);
a0ff6a0e9c44 refactoring
cin
parents: 162
diff changeset
9 void Visit(EmptyToken token);
a0ff6a0e9c44 refactoring
cin
parents: 162
diff changeset
10 void Visit(EndToken token);
a0ff6a0e9c44 refactoring
cin
parents: 162
diff changeset
11 void Visit(SymbolToken token);
162
0526412bbb26 DFA refactoring
cin
parents:
diff changeset
12 }
0526412bbb26 DFA refactoring
cin
parents:
diff changeset
13 }