annotate Implab/Automaton/RegularExpressions/AltToken.cs @ 209:a867536c68fc
v2
Bound promise to CancellationToken
Added new states to ExecutionSate enum.
Added Safe.Guard() method to handle cleanup of the result of the promise
author |
cin |
date |
Wed, 16 Nov 2016 03:06:08 +0300 |
parents |
a0ff6a0e9c44 |
children |
|
rev |
line source |
162
|
1 using System;
|
|
2
|
|
3 namespace Implab.Automaton.RegularExpressions {
|
177
|
4 public class AltToken: BinaryToken {
|
|
5 public AltToken(Token left, Token right)
|
162
|
6 : base(left, right) {
|
|
7 }
|
|
8
|
177
|
9 public override void Accept(IVisitor visitor) {
|
162
|
10 Safe.ArgumentNotNull(visitor, "visitor");
|
|
11 visitor.Visit(this);
|
|
12 }
|
|
13 public override string ToString() {
|
177
|
14 return String.Format(Right is BinaryToken ? "{0}|({1})" : "{0}|{1}", Left, Right);
|
162
|
15 }
|
|
16 }
|
|
17 }
|