(&self)
| 761 | /// Asserts: the `kind()` is [Kind::Number]. |
| 762 | #[inline] |
| 763 | pub const fn sign_is_required(&self) -> bool { |
| 764 | debug_assert!(self.kind_bits() == Kind::Number as u8); |
| 765 | self.first_flag() |
| 766 | } |
| 767 | |
| 768 | /// Returns a new [Token] with the `sign_is_required` flag set. This indicates that the `+` sign |
| 769 | /// should be preserved during minification (e.g., for `an+b` syntax). |
no test coverage detected