public ILexResult Move(int position) { LexNode copy = (LexNode)Clone(); copy.Start = position; return(copy); }
public static IEnumerable <LexNode> WrapSingle(LexNode node) { return(new LexNode[1] { node }); }