28 #ifndef LISTWILDCARDNODE_H
29 #define LISTWILDCARDNODE_H
32 namespace jmespath {
namespace ast {
60 #endif // LISTWILDCARDNODE_H
ListWildcardNode()
Constructs a ListWildcardNode object.
Definition: listwildcardnode.cpp:33
The ListWildcardNode class represents a JMESPath list wildcard expression.
Definition: listwildcardnode.h:38
void accept(interpreter::AbstractVisitor *visitor) const override
Calls the visit method of the given visitor with the dynamic type of the node.
Definition: listwildcardnode.cpp:38
bool operator==(const ListWildcardNode &other) const
Equality compares this node to the other.
Definition: listwildcardnode.cpp:43
The AbstractVisitor class is an interface which defines the member functions required to visit every ...
Definition: abstractvisitor.h:71
The AbstractNode class is the common interface class for all AST node types.
Definition: abstractnode.h:45