* @brief Advances the lookahead by one token. */
| 391 | * @brief Advances the lookahead by one token. |
| 392 | */ |
| 393 | void Parser::advance() |
| 394 | { |
| 395 | m_cur = m_lexer.next(); |
| 396 | } |
| 397 | |
| 398 | /** |
| 399 | * @brief Skips tokens up to and including the next semicolon. |
no test coverage detected