(b []byte, p unsafe.Pointer, t reflect.Type)
| 817 | } |
| 818 | |
| 819 | func (e encoder) encodeMaybeEmptyInterface(b []byte, p unsafe.Pointer, t reflect.Type) ([]byte, error) { |
| 820 | return Append(b, reflect.NewAt(t, p).Elem().Interface(), e.flags) |
| 821 | } |
| 822 | |
| 823 | func (e encoder) encodeUnsupportedTypeError(b []byte, p unsafe.Pointer, t reflect.Type) ([]byte, error) { |
| 824 | return b, &UnsupportedTypeError{Type: t} |
no test coverage detected