shadowList implements protoreflect.List as a shadow.
| 738 | |
| 739 | // shadowList implements protoreflect.List as a shadow. |
| 740 | type shadowList struct { |
| 741 | get, set protoreflect.List |
| 742 | } |
| 743 | |
| 744 | func (x *shadowList) Len() int { return x.get.Len() } |
| 745 | func (x *shadowList) Get(n int) protoreflect.Value { return x.get.Get(n) } |
nothing calls this directly
no outgoing calls
no test coverage detected