| 1091 | } |
| 1092 | |
| 1093 | type IndexExpr struct { |
| 1094 | Collection Expression |
| 1095 | Key Expression |
| 1096 | |
| 1097 | SrcRange hcl.Range |
| 1098 | OpenRange hcl.Range |
| 1099 | BracketRange hcl.Range |
| 1100 | } |
| 1101 | |
| 1102 | func (e *IndexExpr) walkChildNodes(w internalWalkFunc) { |
| 1103 | w(e.Collection) |
nothing calls this directly
no outgoing calls
no test coverage detected