Returns the next token kind without consuming it.
(&mut self)
| 355 | |
| 356 | /// Returns the next token kind without consuming it. |
| 357 | fn peek(&mut self) -> TokenKind { |
| 358 | self.tokens.peek() |
| 359 | } |
| 360 | |
| 361 | /// Returns the next two token kinds without consuming it. |
| 362 | fn peek2(&mut self) -> (TokenKind, TokenKind) { |
no outgoing calls
no test coverage detected