ScopeTraversalExpr is an Expression that retrieves a value from the scope using a traversal.
| 128 | // ScopeTraversalExpr is an Expression that retrieves a value from the scope |
| 129 | // using a traversal. |
| 130 | type ScopeTraversalExpr struct { |
| 131 | Traversal hcl.Traversal |
| 132 | SrcRange hcl.Range |
| 133 | } |
| 134 | |
| 135 | func (e *ScopeTraversalExpr) walkChildNodes(w internalWalkFunc) { |
| 136 | // Scope traversals have no child nodes |
nothing calls this directly
no outgoing calls
no test coverage detected