| 2582 | } |
| 2583 | |
| 2584 | bool gjs_value_from_explicit_array( |
| 2585 | JSContext* cx, JS::MutableHandleValue value_p, |
| 2586 | const GI::TypeInfo& type_info, GIArgument* arg, size_t length, |
| 2587 | GITransfer transfer /* = GI_TRANSFER_EVERYTHING */) { |
| 2588 | return gjs_array_from_carray_internal(cx, value_p, type_info.array_type(), |
| 2589 | type_info.element_type(), transfer, |
| 2590 | length, gjs_arg_get<void*>(arg)); |
| 2591 | } |
| 2592 | |
| 2593 | bool gjs_value_from_basic_explicit_array(JSContext* cx, |
| 2594 | JS::MutableHandleValue value_out, |
no test coverage detected