annotate Implab/Automaton/RegularExpressions/EndToken.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 |
|
rev |
line source |
162
|
1 using Implab;
|
|
2
|
|
3 namespace Implab.Automaton.RegularExpressions {
|
|
4 /// <summary>
|
|
5 /// Конечный символ расширенного регулярного выражения, при построении ДКА
|
|
6 /// используется для определения конечных состояний.
|
|
7 /// </summary>
|
177
|
8 public class EndToken: Token {
|
162
|
9
|
177
|
10 public override void Accept(IVisitor visitor) {
|
162
|
11 Safe.ArgumentNotNull(visitor, "visitor");
|
|
12 visitor.Visit(this);
|
|
13 }
|
|
14 public override string ToString() {
|
|
15 return "#";
|
|
16 }
|
|
17 }
|
|
18 }
|