[Lldb-commits] [lldb] [lldb] add a marker before skipped frames (PR #167550)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 12 10:55:59 PST 2025
================
@@ -49,6 +49,17 @@ class StackFrameList : public std::enable_shared_from_this<StackFrameList> {
/// Resets the selected frame index of this object.
void ClearSelectedFrameIndex();
+ /// Returns \code true if the next frame is hidden.
+ bool IsNextFrameHidden(lldb_private::StackFrame &frame);
+
+ /// Returns \code true if the previous frame is hidden.
+ bool IsPreviousFrameHidden(lldb_private::StackFrame &frame);
+
+ /// Returns the stack frame marker based on the whether the terminal supports
----------------
adrian-prantl wrote:
The comment sounds like it's the current frame marker, but it's actually the marker for gaps?
https://github.com/llvm/llvm-project/pull/167550
More information about the lldb-commits
mailing list