| 157 | } |
| 158 | |
| 159 | void TreeNode::haltNode() |
| 160 | { |
| 161 | halt(); |
| 162 | |
| 163 | const auto& parse_executor = _p->post_parsed[size_t(PostCond::ON_HALTED)]; |
| 164 | if(parse_executor) |
| 165 | { |
| 166 | Ast::Environment env = { config().blackboard, config().enums }; |
| 167 | parse_executor(env); |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | void TreeNode::setStatus(NodeStatus new_status) |
| 172 | { |
no outgoing calls
no test coverage detected