| 2591 | } |
| 2592 | |
| 2593 | bool gjs_value_from_basic_explicit_array(JSContext* cx, |
| 2594 | JS::MutableHandleValue value_out, |
| 2595 | GITypeTag element_tag, GIArgument* arg, |
| 2596 | size_t length) { |
| 2597 | return gjs_array_from_basic_c_array_internal( |
| 2598 | cx, value_out, element_tag, length, gjs_arg_get<void*>(arg)); |
| 2599 | } |
| 2600 | |
| 2601 | GJS_JSAPI_RETURN_CONVENTION |
| 2602 | static bool gjs_array_from_boxed_array(JSContext* cx, |
no test coverage detected