(String msg)
| 2031 | return error("Syntax error, "+msg+": " + _lexer.getAnyNextToken()); |
| 2032 | } |
| 2033 | ParseException error(String msg) { return error(msg,_lexer); } |
| 2034 | public static ParseException error(String msg, Lexer loc) { return new ParseException(msg,loc); } |
| 2035 | |
| 2036 | public static class ParseException extends RuntimeException { |
no outgoing calls
no test coverage detected