(&self)
| 259 | /// Returns true if metadata contains computed values. |
| 260 | #[inline] |
| 261 | pub fn has_computed(&self) -> bool { |
| 262 | self.declaration_kinds.contains(DeclarationKind::Computed) |
| 263 | } |
| 264 | |
| 265 | /// Returns true if metadata contains shorthand properties. |
| 266 | #[inline] |
no test coverage detected