(String msg)
| 1740 | return error("Syntax error, "+msg+": " + _lexer.getAnyNextToken()); |
| 1741 | } |
| 1742 | ParseException error(String msg) { return error(msg,_lexer); } |
| 1743 | public static ParseException error(String msg, Lexer loc) { return new ParseException(msg,loc); } |
| 1744 | |
| 1745 | public static class ParseException extends RuntimeException { |
no outgoing calls
no test coverage detected