/* 721 */ ASTree thenExpr = parseExpression(tbl);
/* 722 */ if (this.lex.get() != 58) {
/* 723 */ throw new CompileError(": is missing", this.lex);
/* */ }
/* 725 */ ASTree elseExpr = parseExpression(tbl);
/* 726 */ return new CondExpr(cond, thenExpr, elseExpr);
/* */ }
/* */
/* 729 */ return cond;
/* */ }