(&self)
| 985 | /// Checks if the [Token] is [Kind::CdcOrCdo] and is the CDC variant of that token. |
| 986 | #[inline] |
| 987 | pub const fn is_cdc(&self) -> bool { |
| 988 | self.kind_bits() == (Kind::CdcOrCdo as u8) && self.third_flag() |
| 989 | } |
| 990 | |
| 991 | /// Some tokens may have a "leading" part: |
| 992 | /// - [Kind::AtKeyword] always starts with a `@`, |