Consume the current lookahead token and return it.
(&mut self)
| 467 | |
| 468 | // Consume the current lookahead token and return it. |
| 469 | fn consume(&mut self) -> Token<'a> { |
| 470 | self.lookahead.take().expect("No token to consume") |
| 471 | } |
| 472 | |
| 473 | // Consume the whole line following the current lookahead token. |
| 474 | // Return the text of the line tail. |
no test coverage detected