| 194 | } |
| 195 | |
| 196 | GJS_JSAPI_RETURN_CONVENTION |
| 197 | static bool resolve(JSContext* cx, JS::HandleObject module, JS::HandleId id, |
| 198 | bool* resolved) { |
| 199 | return priv(module)->resolve_impl(cx, module, id, resolved); |
| 200 | } |
| 201 | |
| 202 | static void finalize(JS::GCContext*, JSObject* module) { |
| 203 | delete priv(module); |
nothing calls this directly
no test coverage detected