28 #ifndef FILTEREXPRESSIONNODE_H
29 #define FILTEREXPRESSIONNODE_H
31 #include <boost/fusion/include/adapt_struct.hpp>
33 namespace jmespath {
namespace ast {
72 BOOST_FUSION_ADAPT_STRUCT(
76 #endif // FILTEREXPRESSIONNODE_H
ExpressionNode expression
The node's child expression.
Definition: filterexpressionnode.h:68
The FilterExpressionNode class represents a JMESPath filter expression.
Definition: filterexpressionnode.h:39
The AbstractVisitor class is an interface which defines the member functions required to visit every ...
Definition: abstractvisitor.h:71
bool operator==(const FilterExpressionNode &other) const
Equality compares this node to the other.
Definition: filterexpressionnode.cpp:50
FilterExpressionNode()
Constructs a FilterExpressionNode object.
Definition: filterexpressionnode.cpp:34
The ExpressionNode class represents a JMESPath expression.
Definition: expressionnode.h:56
void accept(interpreter::AbstractVisitor *visitor) const override
Calls the visit method of the given visitor with the dynamic type of the node.
Definition: filterexpressionnode.cpp:45
The AbstractNode class is the common interface class for all AST node types.
Definition: abstractnode.h:45