| 1770 | } |
| 1771 | |
| 1772 | type SplatExpr struct { |
| 1773 | Source Expression |
| 1774 | Each Expression |
| 1775 | Item *AnonSymbolExpr |
| 1776 | |
| 1777 | SrcRange hcl.Range |
| 1778 | MarkerRange hcl.Range |
| 1779 | } |
| 1780 | |
| 1781 | func (e *SplatExpr) Value(ctx *hcl.EvalContext) (cty.Value, hcl.Diagnostics) { |
| 1782 | sourceVal, diags := e.Source.Value(ctx) |
nothing calls this directly
no outgoing calls
no test coverage detected