(m reflect.Value, typ reflect.Type, ctx *objectExportCtx)
| 1019 | } |
| 1020 | |
| 1021 | func (o *baseObject) exportToMap(m reflect.Value, typ reflect.Type, ctx *objectExportCtx) error { |
| 1022 | return genericExportToMap(o.val, m, typ, ctx) |
| 1023 | } |
| 1024 | |
| 1025 | func genericExportToArrayOrSlice(o *Object, dst reflect.Value, typ reflect.Type, ctx *objectExportCtx) (err error) { |
| 1026 | r := o.runtime |
nothing calls this directly
no test coverage detected