(&self)
| 885 | /// Asserts: The [Kind] is [Kind::String]. |
| 886 | #[inline] |
| 887 | pub const fn has_close_quote(&self) -> bool { |
| 888 | debug_assert!(self.kind_bits() == Kind::String as u8); |
| 889 | self.second_flag() |
| 890 | } |
| 891 | |
| 892 | /// Checks if it is possible for the [Token] to contain escape characters. Numbers, for example, cannot. Idents can. |
| 893 | #[inline] |
no test coverage detected