(&mut self)
| 136 | } |
| 137 | |
| 138 | fn peek_kind(&mut self) -> Result<Kind, ParsingError> { |
| 139 | let token = self.peek_token()?; |
| 140 | Ok(token.kind) |
| 141 | } |
| 142 | |
| 143 | /// Checks if the current index has token `Kind` |
| 144 | fn at(&self, kind: Kind) -> bool { |
no test coverage detected