(&self)
| 247 | /// Returns true if metadata contains important declarations. |
| 248 | #[inline] |
| 249 | pub fn has_important(&self) -> bool { |
| 250 | self.declaration_kinds.contains(DeclarationKind::Important) |
| 251 | } |
| 252 | |
| 253 | /// Returns true if metadata contains custom properties. |
| 254 | #[inline] |
no test coverage detected