diff --git a/representation.js b/representation.js index ea4ba57..646429b 100644 --- a/representation.js +++ b/representation.js @@ -157,8 +157,7 @@ function DefFunc(ident, params, body) { function If(condition, thenexp, elseexp) { this.condition = condition; this.thenexp = thenexp; - if (elseexp) - this.elseexp = elseexp; + this.elseexp = elseexp; this.exprType = "If"; return this; }