()
| 483 | } |
| 484 | |
| 485 | private int nextToken() throws IOException { |
| 486 | int tt = peekToken(); |
| 487 | consumeToken(); |
| 488 | return tt; |
| 489 | } |
| 490 | |
| 491 | private boolean matchToken(int toMatch, boolean ignoreComment) throws IOException { |
| 492 | int tt = peekToken(); |
no test coverage detected