()
| 507 | // postfix ++ or -- operator, which has to be on the same line as its |
| 508 | // operand. |
| 509 | private int peekTokenOrEOL() throws IOException { |
| 510 | int tt = peekToken(); |
| 511 | // Check for last peeked token flags |
| 512 | if ((currentFlaggedToken & TI_AFTER_EOL) != 0) { |
| 513 | tt = Token.EOL; |
| 514 | } |
| 515 | return tt; |
| 516 | } |
| 517 | |
| 518 | private boolean mustMatchToken(int toMatch, String messageId, boolean ignoreComment) |
| 519 | throws IOException { |
no test coverage detected