| 1126 | } |
| 1127 | |
| 1128 | type TupleConsExpr struct { |
| 1129 | Exprs []Expression |
| 1130 | |
| 1131 | SrcRange hcl.Range |
| 1132 | OpenRange hcl.Range |
| 1133 | } |
| 1134 | |
| 1135 | func (e *TupleConsExpr) walkChildNodes(w internalWalkFunc) { |
| 1136 | for _, expr := range e.Exprs { |
nothing calls this directly
no outgoing calls
no test coverage detected