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