[Lldb-commits] [lldb] [lldb] Introduce SBFrameList for lazy frame iteration (PR #166651)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 5 15:51:39 PST 2025
================
@@ -0,0 +1,13 @@
+%feature("docstring",
+"Represents a list of :py:class:`SBFrame` objects."
+) lldb::SBFrameList;
+
+%feature("autodoc", "GetSize(SBFrameList self) -> uint32_t") lldb::SBFrameList::GetSize;
+%feature("docstring", "
+ Returns the number of frames in the list."
+) lldb::SBFrameList::GetSize;
+
+%feature("autodoc", "GetFrameAtIndex(SBFrameList self, uint32_t idx) -> SBFrame") lldb::SBFrameList::GetFrameAtIndex;
+%feature("docstring", "
+ Returns the frame at the given index."
+) lldb::SBFrameList::GetFrameAtIndex;
----------------
JDevlieghere wrote:
Newline still missing :-)
https://github.com/llvm/llvm-project/pull/166651
More information about the lldb-commits
mailing list