(dst reflect.Value, typ reflect.Type, ctx *objectExportCtx)
| 1081 | } |
| 1082 | |
| 1083 | func (o *baseObject) exportToArrayOrSlice(dst reflect.Value, typ reflect.Type, ctx *objectExportCtx) error { |
| 1084 | return genericExportToArrayOrSlice(o.val, dst, typ, ctx) |
| 1085 | } |
| 1086 | |
| 1087 | type enumerableFlag int |
| 1088 |
nothing calls this directly
no test coverage detected