MCPcopy Create free account
hub / github.com/jmespath/go-jmespath / ASTNode

Struct ASTNode

parser.go:40–44  ·  view source on GitHub ↗

ASTNode represents the abstract syntax tree of a JMESPath expression.

Source from the content-addressed store, hash-verified

38
39// ASTNode represents the abstract syntax tree of a JMESPath expression.
40type ASTNode struct {
41 nodeType astNodeType
42 value interface{}
43 children []ASTNode
44}
45
46func (node ASTNode) String() string {
47 return node.PrettyPrint(0)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected