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

Lines Matching refs:iop

582                     InsertBeforeOp iop = (InsertBeforeOp)inserts[j];
583 if (iop.index == rop.index)
587 rewrites[iop.instructionIndex] = null;
588 rop.text = iop.text.ToString() + (rop.text != null ? rop.text.ToString() : string.Empty);
590 else if (iop.index > rop.index && iop.index <= rop.lastIndex)
593 rewrites[iop.instructionIndex] = null;
638 InsertBeforeOp iop = (InsertBeforeOp)rewrites[i];
644 if ( prevIop.index == iop.index )
648 iop.text = CatOpText( iop.text, prevIop.text );
653 // look for replaces where iop.index is in range; error
658 if ( iop.index == rop.index )
660 rop.text = CatOpText( iop.text, rop.text );
664 if ( iop.index >= rop.index && iop.index <= rop.lastIndex )
666 throw new ArgumentException( "insert op " + iop +