Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching refs:ReplaceOp

165          *  I'm going to try replacing range from x..y with (y-x)+1 ReplaceOp
169 private class ReplaceOp : RewriteOperation
172 public ReplaceOp( TokenRewriteStream stream, int from, int to, object text )
194 return string.Format("<ReplaceOp@{0}..{1}:\"{2}\">", stream._tokens[index], stream._tokens[lastIndex], text);
338 RewriteOperation op = new ReplaceOp( this, from, to, text );
575 if ( !( op is ReplaceOp ) )
577 ReplaceOp rop = (ReplaceOp)rewrites[i];
597 var prevReplaces = GetKindOfOps( rewrites, typeof( ReplaceOp ), i );
600 ReplaceOp prevRop = (ReplaceOp)prevReplaces[j];
654 var prevReplaces = GetKindOfOps( rewrites, typeof( ReplaceOp ), i );
657 ReplaceOp rop = (ReplaceOp)prevReplaces[j];