| 287 | func (c *float32Converter) Zero() protoreflect.Value { return c.def } |
| 288 | |
| 289 | type float64Converter struct { |
| 290 | goType reflect.Type |
| 291 | def protoreflect.Value |
| 292 | } |
| 293 | |
| 294 | func (c *float64Converter) PBValueOf(v reflect.Value) protoreflect.Value { |
| 295 | if v.Type() != c.goType { |
nothing calls this directly
no outgoing calls
no test coverage detected