(int tokenIndex, String token)
| 22 | } |
| 23 | |
| 24 | private void confirmToken(int tokenIndex, String token) throws ParserException { |
| 25 | if (!(token.equals(tokens.get(tokenIndex)))) throw new ParserException("'" + token + "'" + " expected"); |
| 26 | } |
| 27 | |
| 28 | private int index = 0; |
| 29 |
no test coverage detected