RelativeTraversalExpr is an Expression that retrieves a value from another value using a _relative_ traversal.
| 158 | // RelativeTraversalExpr is an Expression that retrieves a value from another |
| 159 | // value using a _relative_ traversal. |
| 160 | type RelativeTraversalExpr struct { |
| 161 | Source Expression |
| 162 | Traversal hcl.Traversal |
| 163 | SrcRange hcl.Range |
| 164 | } |
| 165 | |
| 166 | func (e *RelativeTraversalExpr) walkChildNodes(w internalWalkFunc) { |
| 167 | w(e.Source) |
nothing calls this directly
no outgoing calls
no test coverage detected