Bool node
| 129 | // Bool node |
| 130 | // |
| 131 | BoolNode::BoolNode(NodeType type, NodePtr left, NodePtr right) : |
| 132 | LogicalNode(type), m_left(std::move(left)), m_right(std::move(right)) |
| 133 | {} |
| 134 | |
| 135 | std::string BoolNode::print() const |
| 136 | { |
nothing calls this directly
no outgoing calls
no test coverage detected