(dst reflect.Value, typ reflect.Type, ctx *objectExportCtx)
| 509 | } |
| 510 | |
| 511 | func (o *baseDynamicObject) exportToMap(dst reflect.Value, typ reflect.Type, ctx *objectExportCtx) error { |
| 512 | return genericExportToMap(o.val, dst, typ, ctx) |
| 513 | } |
| 514 | |
| 515 | func (o *baseDynamicObject) exportToArrayOrSlice(dst reflect.Value, typ reflect.Type, ctx *objectExportCtx) error { |
| 516 | return genericExportToArrayOrSlice(o.val, dst, typ, ctx) |
nothing calls this directly
no test coverage detected