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 17:37:03 -04:00 committed by GitHub
parent 6650be8e0f
commit feef68bec7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 72 additions and 23 deletions

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