debugger: Add support for label presentation hints for stack frames (#32719)

Release Notes:

- debugger: Add support for `Label` stack frame kinds

Co-authored-by: Remco Smits <djsmits12@gmail.com>
This commit is contained in:
Anthony Eid
2025-06-13 21:37:03 +00:00
committed by GitHub
co-authored by Remco Smits
parent 6650be8e0f
commit feef68bec7
3 changed files with 72 additions and 23 deletions
+2 -2
View File
@@ -148,7 +148,7 @@ impl StackTraceView {
let stack_frames = self
.stack_frame_list
.read_with(cx, |list, _| list.flatten_entries(false));
.read_with(cx, |list, _| list.flatten_entries(false, false));
let frames_to_open: Vec<_> = stack_frames
.into_iter()
@@ -237,7 +237,7 @@ impl StackTraceView {
let stack_frames = self
.stack_frame_list
.read_with(cx, |session, _| session.flatten_entries(false));
.read_with(cx, |session, _| session.flatten_entries(false, false));
let active_idx = self
.selected_stack_frame_id