[Lldb-commits] [lldb] [lldb] Add SBThread.selected_frame property (PR #123981)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 23 09:36:25 PST 2025
================
@@ -51,6 +51,12 @@ STRING_EXTENSION_OUTSIDE(SBThread)
for idx in range(self.GetStopReasonDataCount())
]
+ def set_selected_frame(self, frame):
+ if isinstance(frame, SBFrame):
+ self.SetSelectedFrame(frame.idx)
----------------
kastiglione wrote:
oh my reply was to @labath, before I saw @jimingham's comments.
https://github.com/llvm/llvm-project/pull/123981
More information about the lldb-commits
mailing list