(t reflect.Type, pointer bool)
| 814 | } |
| 815 | |
| 816 | func constructJSONUnmarshalerDecodeFunc(t reflect.Type, pointer bool) decodeFunc { |
| 817 | return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
| 818 | return d.decodeJSONUnmarshaler(b, p, t, pointer) |
| 819 | } |
| 820 | } |
| 821 | |
| 822 | func constructTextMarshalerEncodeFunc(t reflect.Type, pointer bool) encodeFunc { |
| 823 | return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
no test coverage detected
searching dependent graphs…