Example #1
0
        public ILexResult Move(int position)
        {
            LexNode copy = (LexNode)Clone();

            copy.Start = position;

            return(copy);
        }
Example #2
0
 public static IEnumerable <LexNode> WrapSingle(LexNode node)
 {
     return(new LexNode[1] {
         node
     });
 }