Mercurial > pub > ImplabNet
view 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 |
line wrap: on
line source
using System; namespace Implab.Automaton.RegularExpressions { public class AltToken: BinaryToken { public AltToken(Token left, Token right) : base(left, right) { } public override void Accept(IVisitor visitor) { Safe.ArgumentNotNull(visitor, "visitor"); visitor.Visit(this); } public override string ToString() { return String.Format(Right is BinaryToken ? "{0}|({1})" : "{0}|{1}", Left, Right); } } }