[Lldb-commits] [lldb] Add a scripted way to re-present a stop location (PR #158128)
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Thu Sep 11 13:48:48 PDT 2025
================
@@ -0,0 +1,45 @@
+import lldb
+
+class FacadeExample:
+ def __init__(self, bkpt, extra_args, dict):
+ self.bkpt = bkpt
+ self.extra_args = extra_args
+ self.base_sym = None
+ self.facade_locs = []
+ self.facade_locs_desc = []
+ self.cur_facade_loc = 1
----------------
medismailben wrote:
Is that because the default location id is 1 and not 0 ?
https://github.com/llvm/llvm-project/pull/158128
More information about the lldb-commits
mailing list