| 181 | } |
| 182 | |
| 183 | type IndexedExpr struct { |
| 184 | LHS, Index Node |
| 185 | |
| 186 | typMu sync.RWMutex |
| 187 | typ types.Type |
| 188 | } |
| 189 | |
| 190 | func (n *IndexedExpr) Pos() *position.Position { |
| 191 | return position.Merge(n.LHS.Pos(), n.Index.Pos()) |
nothing calls this directly
no outgoing calls
no test coverage detected