JMESPath is the representation of a compiled JMES path query. A JMESPath is safe for concurrent use by multiple goroutines.
| 5 | // JMESPath is the representation of a compiled JMES path query. A JMESPath is |
| 6 | // safe for concurrent use by multiple goroutines. |
| 7 | type JMESPath struct { |
| 8 | ast ASTNode |
| 9 | intr *treeInterpreter |
| 10 | } |
| 11 | |
| 12 | // Compile parses a JMESPath expression and returns, if successful, a JMESPath |
| 13 | // object that can be used to match against data. |
nothing calls this directly
no outgoing calls
no test coverage detected