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:
parent
6650be8e0f
commit
feef68bec7
3 changed files with 72 additions and 23 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue