| 272 | constexpr explicit GArrayContainer(const GI::TypeInfo&) {} |
| 273 | |
| 274 | static bool in(JSContext* cx, GITypeTag element_tag, GIArgument* arg, |
| 275 | const char* arg_name, GjsArgumentFlags flags, |
| 276 | JS::HandleValue value) { |
| 277 | return gjs_value_to_basic_array_gi_argument( |
| 278 | cx, value, element_tag, GI_ARRAY_TYPE_ARRAY, arg, arg_name, |
| 279 | GJS_ARGUMENT_ARGUMENT, flags); |
| 280 | } |
| 281 | |
| 282 | static bool out(JSContext* cx, GITypeTag element_tag, GIArgument* arg, |
| 283 | JS::MutableHandleValue value_out) { |
nothing calls this directly
no test coverage detected