[Lldb-commits] [lldb] Add a breakpoint override resolver feature to lldb (PR #195392)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Tue May 5 15:58:17 PDT 2026


================
@@ -11,9 +11,34 @@
 
 #include "ScriptedInterface.h"
 #include "lldb/Symbol/SymbolContext.h"
+#include "lldb/Target/Target.h"
 #include "lldb/lldb-private.h"
 
 namespace lldb_private {
+class ScriptedBreakpointResolverOverride
+    : public Target::BreakpointResolverOverride {
+public:
+  ScriptedBreakpointResolverOverride(Target &target,
+                                     const std::string &description,
+                                     const std::string &class_name,
+                                     StructuredDataImpl &args_data)
----------------
medismailben wrote:

This should be `ScriptedMetadata`

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


More information about the lldb-commits mailing list