(&self)
| 915 | /// Asserts: The token is "ident like", i.e. it is [Kind::Ident], [Kind::AtKeyword], [Kind::Function], [Kind::Hash]. |
| 916 | #[inline] |
| 917 | pub const fn is_dashed_ident(&self) -> bool { |
| 918 | debug_assert!(self.is_ident_like()); |
| 919 | self.second_flag() |
| 920 | } |
| 921 | |
| 922 | /// Checks if the [Token] is Ident like and none of the characters are ASCII upper-case. |
| 923 | #[inline] |
no test coverage detected