예제 #1
0
 public BoundLabelStatement(LabelSymbel label)
 {
     Label = label;
 }
 public BoundConditionalGotoStatement(LabelSymbel label, BoundExpression condition, bool jumpIfTrue = true)
 {
     JumpIfTrue = jumpIfTrue;
     Condition  = condition;
     Label      = label;
 }