view Implab/Automaton/RegularExpressions/EmptyToken.cs @ 197:86187b01c4e0

fixed: the error handler should not handle handlers errors
author cin
date Thu, 01 Sep 2016 10:43:31 +0300
parents a0ff6a0e9c44
children
line wrap: on
line source

using Implab;

namespace Implab.Automaton.RegularExpressions {
    public class EmptyToken: Token {
        public override void Accept(IVisitor visitor) {
            Safe.ArgumentNotNull(visitor, "visitor");
            visitor.Visit(this);
        }
        public override string ToString() {
            return "$";
        }
    }
}