public virtual void visit(IGotoStatementNode value)
 {
 }
Beispiel #2
0
 public override void visit(IGotoStatementNode value)
 {
     Label lab = helper.GetLabel(value.label, il);
     il.Emit(OpCodes.Br, lab);
 }
 public virtual void visit(IGotoStatementNode value)
 {
 	
 }
Beispiel #4
0
 public void visit(IGotoStatementNode value)
 {
     string s = value.GetType().Name + ".";
     //prepare_node(value.label, s + "label");            
 }
Beispiel #5
0
 public void visit(IGotoStatementNode value)
 {
     throw new System.NotSupportedException(value.GetType().ToString());
 }