[Lldb-commits] [lldb] [lldb] Add `scripting extension instances` command (PR #226043)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Sep 25 11:59:16 PDT 2026


================
@@ -37,6 +43,8 @@ class ScriptedInterface {
     return m_scripted_metadata;
   }
 
+  virtual llvm::StringRef GetPluginName() { return {}; }
----------------
JDevlieghere wrote:

This shadows PluginInterface's existing pure virtual with a non-pure, empty-default override instead of getting the plugin name from PluginInterface. That means that a missed override fails silently rather than at compile time.

https://github.com/llvm/llvm-project/pull/226043


More information about the lldb-commits mailing list