mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
dap: Extract a thread_states map
This commit is contained in:
parent
5b920c53f0
commit
27c1b3f98b
3 changed files with 22 additions and 15 deletions
|
@ -31,6 +31,7 @@ pub struct Client {
|
|||
pub breakpoints: HashMap<PathBuf, Vec<SourceBreakpoint>>,
|
||||
// thread_id -> frames
|
||||
pub stack_frames: HashMap<usize, Vec<StackFrame>>,
|
||||
pub thread_states: HashMap<usize, String>,
|
||||
pub thread_id: Option<usize>,
|
||||
/// Currently active frame for the current thread.
|
||||
pub active_frame: Option<usize>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue