| 191 | func (c *int32Converter) Zero() protoreflect.Value { return c.def } |
| 192 | |
| 193 | type int64Converter struct { |
| 194 | goType reflect.Type |
| 195 | def protoreflect.Value |
| 196 | } |
| 197 | |
| 198 | func (c *int64Converter) PBValueOf(v reflect.Value) protoreflect.Value { |
| 199 | if v.Type() != c.goType { |
nothing calls this directly
no outgoing calls
no test coverage detected