| 50 | } |
| 51 | |
| 52 | void LldbDebuggerPlugin::unload() |
| 53 | { |
| 54 | const auto plugins = core()->pluginController()->allPluginsForExtension(QStringLiteral("org.kdevelop.IExecutePlugin")); |
| 55 | for (auto plugin : plugins) { |
| 56 | setupExecutePlugin(plugin, false); |
| 57 | } |
| 58 | Q_ASSERT(m_launchers.isEmpty()); |
| 59 | } |
| 60 | |
| 61 | void LldbDebuggerPlugin::setupExecutePlugin(KDevelop::IPlugin* plugin, bool load) |
| 62 | { |
nothing calls this directly
no test coverage detected