(t reflect.Type, pointer bool)
| 820 | } |
| 821 | |
| 822 | func constructTextMarshalerEncodeFunc(t reflect.Type, pointer bool) encodeFunc { |
| 823 | return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
| 824 | return e.encodeTextMarshaler(b, p, t, pointer) |
| 825 | } |
| 826 | } |
| 827 | |
| 828 | func constructTextUnmarshalerDecodeFunc(t reflect.Type, pointer bool) decodeFunc { |
| 829 | return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
no test coverage detected
searching dependent graphs…