28 #ifndef EXPRESSIONARGUMENTNODE_H
29 #define EXPRESSIONARGUMENTNODE_H
32 #include <boost/fusion/include/adapt_struct.hpp>
34 namespace jmespath {
namespace ast {
73 BOOST_FUSION_ADAPT_STRUCT(
77 #endif // EXPRESSIONARGUMENTNODE_H
ExpressionArgumentNode()
Constructs an emtpy ExpressionArgumentNode object.
Definition: expressionargumentnode.cpp:32
void accept(interpreter::AbstractVisitor *visitor) const override
Calls the visit method of the given visitor with the dynamic type of the node.
Definition: expressionargumentnode.cpp:44
The ExpressionArgumentNode class represents a JMESPath expression argument.
Definition: expressionargumentnode.h:40
bool operator==(const ExpressionArgumentNode &other) const
Equality compares this node to the other.
Definition: expressionargumentnode.cpp:49
ExpressionNode expression
The node's child expression.
Definition: expressionargumentnode.h:69
The AbstractVisitor class is an interface which defines the member functions required to visit every ...
Definition: abstractvisitor.h:71
The ExpressionNode class represents a JMESPath expression.
Definition: expressionnode.h:56
The AbstractNode class is the common interface class for all AST node types.
Definition: abstractnode.h:45