23#include <antares/expressions/nodes/Node.h>
25namespace Antares::Expressions::Nodes
50 Node* child_ =
nullptr;
Base class for nodes in a syntax tree.
Definition Node.h:30
Represents a unary node in a syntax tree.
Definition UnaryNode.h:31
Node * child() const
Retrieves a pointer to the child node.
Definition UnaryNode.cpp:30
UnaryNode(Node *child)
Constructs a unary node with the specified child.
Definition UnaryNode.cpp:25