| 68 | } |
| 69 | |
| 70 | type selectionImpl struct { |
| 71 | kind types.SelectionKind |
| 72 | recv types.Type |
| 73 | index []int |
| 74 | obj types.Object |
| 75 | typ types.Type |
| 76 | } |
| 77 | |
| 78 | func (sel *selectionImpl) Kind() types.SelectionKind { return sel.kind } |
| 79 | func (sel *selectionImpl) Recv() types.Type { return sel.recv } |
nothing calls this directly
no outgoing calls
no test coverage detected