Returns the next token kind without consuming it.
(&mut self)
| 290 | |
| 291 | /// Returns the next token kind without consuming it. |
| 292 | fn peek(&mut self) -> TokenKind { |
| 293 | self.tokens.peek() |
| 294 | } |
| 295 | |
| 296 | /// Returns the next two token kinds without consuming it. |
| 297 | fn peek2(&mut self) -> (TokenKind, TokenKind) { |
no outgoing calls
no test coverage detected