(&self)
| 265 | /// Returns true if metadata contains shorthand properties. |
| 266 | #[inline] |
| 267 | pub fn has_shorthands(&self) -> bool { |
| 268 | self.declaration_kinds.contains(DeclarationKind::Shorthands) |
| 269 | } |
| 270 | |
| 271 | /// Returns true if metadata contains longhand properties. |
| 272 | #[inline] |
no test coverage detected