(&self)
| 947 | /// Asserts: The token is [Kind::Url]. |
| 948 | #[inline] |
| 949 | pub const fn url_has_leading_space(&self) -> bool { |
| 950 | debug_assert!(self.kind_bits() == Kind::Url as u8); |
| 951 | self.second_flag() |
| 952 | } |
| 953 | |
| 954 | /// If the [Token] is [Kind::Url], checks if the closing parenthesis is present. |
| 955 | /// |
nothing calls this directly
no test coverage detected