| 413 | } |
| 414 | |
| 415 | inline GIArgument* get_argument_for_arg_info(const GI::ArgInfo& arg_info, |
| 416 | GIArgument** args, int index) { |
| 417 | if (!arg_info.caller_allocates()) |
| 418 | return *reinterpret_cast<GIArgument**>(args[index]); |
| 419 | return args[index]; |
| 420 | } |
| 421 | |
| 422 | bool GjsCallbackTrampoline::callback_closure_inner( |
| 423 | JSContext* cx, JS::HandleObject this_object, GObject* gobject, |
no test coverage detected