(&self)
| 751 | /// will return `true`. |
| 752 | #[inline] |
| 753 | pub const fn has_sign(&self) -> bool { |
| 754 | self.kind_bits() & 0b1100 == 0b0100 && self.second_flag() |
| 755 | } |
| 756 | |
| 757 | /// The [Token] is a [Kind::Number] and the `+` sign is semantically required and should be preserved during |
| 758 | /// minification. This is used for numbers in `an+b` syntax (e.g., `:nth-child(+5)`) where the `+` sign |
no test coverage detected