(t reflect.Type)
| 802 | } |
| 803 | |
| 804 | func constructUnsupportedTypeDecodeFunc(t reflect.Type) decodeFunc { |
| 805 | return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
| 806 | return d.decodeUnmarshalTypeError(b, p, t) |
| 807 | } |
| 808 | } |
| 809 | |
| 810 | func constructJSONMarshalerEncodeFunc(t reflect.Type, pointer bool) encodeFunc { |
| 811 | return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
no test coverage detected
searching dependent graphs…