(&self)
| 353 | /// Returns true if this is an empty container (no declarations, no nested rules). |
| 354 | #[inline] |
| 355 | pub fn is_empty_container(&self) -> bool { |
| 356 | self.node_kinds.contains(NodeKinds::EmptyBlock) |
| 357 | } |
| 358 | |
| 359 | /// Returns true if this node can be a container (has StyleRule or AtRule kind). |
| 360 | #[inline] |
no test coverage detected