23#include <antares/expressions/nodes/Node.h>
25namespace Antares::Expressions::Nodes
57 Node* leftOperand_ =
nullptr;
62 Node* rightOperand_ =
nullptr;
Definition BinaryNode.h:28
Node * right() const
Retrieves a pointer to the right operand.
Definition BinaryNode.cpp:31
BinaryNode(Node *left, Node *right)
Constructs a binary node with the specified left and right operands.
Definition BinaryNode.cpp:25
Node * left() const
Retrieves a pointer to the left operand.
Definition BinaryNode.cpp:36
Base class for nodes in a syntax tree.
Definition Node.h:30