Esempio n. 1
0
 public IfStatNode(int line, ExprNode cond, StatNode @then, StatNode @else)
     : base(line, cond, @then, @else)
 {
 }
Esempio n. 2
0
 public IfStatNode(int line, ExprNode cond, StatNode @then)
     : base(line, cond, @then)
 {
 }