| 595 | } |
| 596 | |
| 597 | type testDecoder struct { |
| 598 | val any // assume encoded by testEncoder. |
| 599 | exactMatch bool |
| 600 | } |
| 601 | |
| 602 | func (d testDecoder) String() string { |
| 603 | return fmt.Sprintf("%+v of type %T", d.val, d.val) |
nothing calls this directly
no outgoing calls
no test coverage detected