public IfStatement(Node condition, Routine suite) { this.condition = condition; this.suite = suite; this.nextIf = null; }
public IfStatement(Routine elseSuite) { this.condition = null; this.suite = elseSuite; this.nextIf = null; }