(dst reflect.Value, typ reflect.Type, ctx *objectExportCtx)
| 513 | } |
| 514 | |
| 515 | func (o *baseDynamicObject) exportToArrayOrSlice(dst reflect.Value, typ reflect.Type, ctx *objectExportCtx) error { |
| 516 | return genericExportToArrayOrSlice(o.val, dst, typ, ctx) |
| 517 | } |
| 518 | |
| 519 | func (o *dynamicObject) equal(impl objectImpl) bool { |
| 520 | if other, ok := impl.(*dynamicObject); ok { |
nothing calls this directly
no test coverage detected