/* 332 */ int t = this.lex.get();
/* 333 */ Stmnt body = parseStatement(tbl);
/* 334 */ if ((this.lex.get() != 346) || (this.lex.get() != 40)) {
/* 335 */ throw new SyntaxError(this.lex);
/* */ }
/* 337 */ ASTree expr = parseExpression(tbl);
/* 338 */ if ((this.lex.get() != 41) || (this.lex.get() != 59)) {
/* 339 */ throw new SyntaxError(this.lex);
/* */ }
/* 341 */ return new Stmnt(t, expr, body);
/* */ }