testList implements protoreflect.List over a concrete slice of values.
| 530 | |
| 531 | // testList implements protoreflect.List over a concrete slice of values. |
| 532 | type zeroList struct { |
| 533 | typ reflect.Type |
| 534 | fd protoreflect.FieldDescriptor |
| 535 | } |
| 536 | |
| 537 | func (x *zeroList) Len() int { return 0 } |
| 538 | func (x *zeroList) Get(n int) protoreflect.Value { panic("get on zero list") } |
nothing calls this directly
no outgoing calls
no test coverage detected