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