(&self)
| 965 | /// Asserts: The token is [Kind::Hash]. |
| 966 | #[inline] |
| 967 | pub const fn hash_is_id_like(&self) -> bool { |
| 968 | debug_assert!(self.kind_bits() == Kind::Hash as u8); |
| 969 | self.second_flag() |
| 970 | } |
| 971 | |
| 972 | /// Checks if the [Token] is [Kind::BadString] or [Kind::BadUrl], or the "bad flag" has been set. |
| 973 | #[inline] |
no test coverage detected