| 415 | uint32_t Node::getNodeCount() const noexcept { |
| 416 | uint32_t count = 1; |
| 417 | ARRAY_START(Node, child, _children) { |
| 418 | count += child->getNodeCount(); |
| 419 | } |
| 420 | ARRAY_END |
| 421 | return count; |
| 422 | } |
nothing calls this directly
no test coverage detected