LiteralValueExpr is an expression that just always returns a given value.
| 60 | |
| 61 | // LiteralValueExpr is an expression that just always returns a given value. |
| 62 | type LiteralValueExpr struct { |
| 63 | Val cty.Value |
| 64 | SrcRange hcl.Range |
| 65 | } |
| 66 | |
| 67 | func (e *LiteralValueExpr) walkChildNodes(w internalWalkFunc) { |
| 68 | // Literal values have no child nodes |
nothing calls this directly
no outgoing calls
no test coverage detected