| 343 | : func_info(info) {} |
| 344 | |
| 345 | Gjs::GErrorResult<> init() { |
| 346 | GIFunctionInvoker invoker; |
| 347 | MOZ_TRY(func_info.prep_invoker(&invoker)); |
| 348 | native_address = invoker.native_address; |
| 349 | gi_function_invoker_clear(&invoker); |
| 350 | return Ok{}; |
| 351 | } |
| 352 | }; |
| 353 | |
| 354 | bool ObjectBase::prop_getter_func(JSContext* cx, unsigned argc, JS::Value* vp) { |
no test coverage detected