(String msg)
| 1853 | return error("Syntax error, "+msg+": " + _lexer.getAnyNextToken()); |
| 1854 | } |
| 1855 | ParseException error(String msg) { return error(msg,_lexer); } |
| 1856 | public static ParseException error(String msg, Lexer loc) { return new ParseException(msg,loc); } |
| 1857 | |
| 1858 | public static class ParseException extends RuntimeException { |
no outgoing calls
no test coverage detected