Returns `true` if the current token is of the given kind.
(&self, kind: TokenKind)
| 424 | |
| 425 | /// Returns `true` if the current token is of the given kind. |
| 426 | fn at(&self, kind: TokenKind) -> bool { |
| 427 | self.current_token_kind() == kind |
| 428 | } |
| 429 | |
| 430 | /// Returns `true` if the current token is found in the given token set. |
| 431 | fn at_ts(&self, ts: TokenSet) -> bool { |
no test coverage detected