Returns `true` if the current token is found in the given token set.
(&self, ts: TokenSet)
| 429 | |
| 430 | /// Returns `true` if the current token is found in the given token set. |
| 431 | fn at_ts(&self, ts: TokenSet) -> bool { |
| 432 | ts.contains(self.current_token_kind()) |
| 433 | } |
| 434 | |
| 435 | fn src_text<T>(&self, ranged: T) -> &'src str |
| 436 | where |
no test coverage detected