view Implab/Automaton/RegularExpressions/AltToken.cs @ 255:b00441e04738 v3

Adde workaround to the behaviour of the logical operations stack in conjuction with async/await methods
author cin
date Wed, 04 Apr 2018 15:38:48 +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);
        }
    }
}