##// END OF EJS Templates
Added Skip method to JSON parser to skip contents of the current node
Added Skip method to JSON parser to skip contents of the current node

File last commit:

r55:c0bf853aa04f default
r62:62b440d46313 default
Show More
CatToken.cs
27 lines | 754 B | text/x-csharp | CSharpLexer
using Implab;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.Parsing {
public class CatToken : BinaryToken {
public CatToken(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("{0}{1}", FormatToken(Left), FormatToken(Right));
}
string FormatToken(Token token) {
return String.Format(token is AltToken ? "({0})" : "{0}", token);
}
}
}