| D | TokenRewriteStream.cs | 48 * You can insert stuff, replace, and delete chunks. Note that the 312 public virtual void Replace( int index, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream 314 Replace( DEFAULT_PROGRAM_NAME, index, index, text ); in Replace() 317 public virtual void Replace( int from, int to, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream 319 Replace( DEFAULT_PROGRAM_NAME, from, to, text ); in Replace() 322 public virtual void Replace( IToken indexT, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream 324 Replace( DEFAULT_PROGRAM_NAME, indexT, indexT, text ); in Replace() 327 public virtual void Replace( IToken from, IToken to, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream 329 Replace( DEFAULT_PROGRAM_NAME, from, to, text ); in Replace() 332 public virtual void Replace( string programName, int from, int to, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream [all …]
|