| 474 | } |
| 475 | |
| 476 | bool Node::isRunning() const noexcept { |
| 477 | return _flags.isOn(Node::Running); |
| 478 | } |
| 479 | |
| 480 | void Node::addChild(Node* child, int order, String tag) { |
| 481 | AssertIf(child == nullptr, "add invalid child (nullptr) to node."); |
no test coverage detected