| 158 | } |
| 159 | |
| 160 | type pathStep struct { |
| 161 | typ reflect.Type |
| 162 | vx, vy reflect.Value |
| 163 | } |
| 164 | |
| 165 | func (ps pathStep) Type() reflect.Type { return ps.typ } |
| 166 | func (ps pathStep) Values() (vx, vy reflect.Value) { return ps.vx, ps.vy } |
nothing calls this directly
no outgoing calls
no test coverage detected