(String token, String currentToken)
| 333 | } |
| 334 | |
| 335 | private static void expectToken(String token, String currentToken) throws ParserException { |
| 336 | if (!token.equals(currentToken)) { |
| 337 | throw new ParserException("Expected: " + token); |
| 338 | } |
| 339 | } |
| 340 | } |
no test coverage detected