Ejemplo n.º 1
0
 public ReplaceOp(TokenRewriteStream stream, int from, int to, object text)
     : base(stream, from, text)
 {
     lastIndex = to;
 }
Ejemplo n.º 2
0
 protected RewriteOperation(TokenRewriteStream stream, int index, object text)
 {
     this.index  = index;
     this.text   = text;
     this.stream = stream;
 }
Ejemplo n.º 3
0
 public InsertBeforeOp(TokenRewriteStream stream, int index, object text) :
     base(stream, index, text)
 {
 }
Ejemplo n.º 4
0
 protected RewriteOperation(TokenRewriteStream stream, int index)
 {
     this.stream = stream;
     this.index  = index;
 }