(&self)
| 922 | /// Checks if the [Token] is Ident like and none of the characters are ASCII upper-case. |
| 923 | #[inline] |
| 924 | pub const fn is_lower_case(&self) -> bool { |
| 925 | self.is_ident_like() && !self.third_flag() |
| 926 | } |
| 927 | |
| 928 | #[inline] |
| 929 | pub fn atom_bits(&self) -> u32 { |
no test coverage detected