(String msg)
| 2090 | return error("Syntax error, "+msg+": " + _lexer.getAnyNextToken()); |
| 2091 | } |
| 2092 | ParseException error(String msg) { return error(msg,_lexer); } |
| 2093 | public static ParseException error(String msg, Lexer loc) { return new ParseException(msg,loc); } |
| 2094 | |
| 2095 | public static class ParseException extends RuntimeException { |
no outgoing calls
no test coverage detected