Mercurial > pub > ImplabNet
view Implab/Parsing/AltToken.cs @ 96:daffa72a1cec v2
Added the chaining method to the non-generic IPromise
| author | cin |
|---|---|
| date | Thu, 30 Oct 2014 10:06:16 +0300 |
| parents | c0bf853aa04f |
| children | 97fbbf816844 |
line wrap: on
line source
using Implab; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Implab.Parsing { 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); } } }
