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