| 2762 | _onDaemonClientEventFunction.value().get(), |
| 2763 | exceptionTracker); |
| 2764 | } |
| 2765 | } |
| 2766 | } |
| 2767 | } |
| 2768 | |
| 2769 | void JavaScriptRuntime::onModuleUnloaded(const ResourceId& resourceId, JavaScriptEntryParameters& /*jsEntry*/) { |
| 2770 | if (resourceId == valdiModuleResourceId()) { |
| 2771 | _onDaemonClientEventFunction = Result<JSValueRef>(); |
| 2772 | |
| 2773 | _contextHandler->removeJsContextHandler(); |
| 2774 | |
| 2775 | if (_contextHandler->needsJsContextHandler()) { |
| 2776 | _pendingModulesToReload.insert(resourceId); |
nothing calls this directly
no test coverage detected