* Peek at the next token without consuming it. */
| 668 | * Peek at the next token without consuming it. |
| 669 | */ |
| 670 | int Parser::peekToken() |
| 671 | { |
| 672 | if (peek != TOKEN_ERROR) |
| 673 | return peek; |
| 674 | peek = getToken(); |
| 675 | return peek; |
| 676 | } |
| 677 | |
| 678 | /* |
| 679 | * Position string for error messages. |
no test coverage detected