public virtual Instruction TransformGotoInstruction(GotoInstruction gotoInstruction)
 {
     gotoInstruction.Target = gotoInstruction.Target.Accept(this);
     return(gotoInstruction);
 }
Example #2
0
 public void VisitGotoInstruction(GotoInstruction g)
 {
     d.VisitGotoInstruction(g);
 }
Example #3
0
 public bool VisitGotoInstruction(GotoInstruction g)
 {
     return(true);
 }
Example #4
0
 public virtual void VisitGotoInstruction(GotoInstruction g)
 {
     g.Target.Accept(this);
 }