(t reflect.Type, pointer bool)
| 808 | } |
| 809 | |
| 810 | func constructJSONMarshalerEncodeFunc(t reflect.Type, pointer bool) encodeFunc { |
| 811 | return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
| 812 | return e.encodeJSONMarshaler(b, p, t, pointer) |
| 813 | } |
| 814 | } |
| 815 | |
| 816 | func constructJSONUnmarshalerDecodeFunc(t reflect.Type, pointer bool) decodeFunc { |
| 817 | return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
no test coverage detected
searching dependent graphs…