(int line, String where, String message)
| 605 | } |
| 606 | |
| 607 | ParseException report(int line, String where, String message) { |
| 608 | return new ParseException("[line " + line + "] Error" + where + ": " + message, line); |
| 609 | } |
| 610 | |
| 611 | public Token nextOrFail(TokenType target) throws ParseException { |
| 612 | Token tok = nextToken(); |