| 305 | constexpr explicit GPtrArrayContainer(const GI::TypeInfo&) {} |
| 306 | |
| 307 | static bool in(JSContext* cx, GITypeTag element_tag, GIArgument* arg, |
| 308 | const char* arg_name, GjsArgumentFlags flags, |
| 309 | JS::HandleValue value) { |
| 310 | return gjs_value_to_basic_array_gi_argument( |
| 311 | cx, value, element_tag, GI_ARRAY_TYPE_PTR_ARRAY, arg, arg_name, |
| 312 | GJS_ARGUMENT_ARGUMENT, flags); |
| 313 | } |
| 314 | |
| 315 | static bool out(JSContext* cx, GITypeTag element_tag, GIArgument* arg, |
| 316 | JS::MutableHandleValue value_out) { |
nothing calls this directly
no test coverage detected