dap: Extract a thread_states map

This commit is contained in:
Blaž Hrastnik 2021-09-03 11:30:25 +09:00
parent 5b920c53f0
commit 27c1b3f98b
3 changed files with 22 additions and 15 deletions

View file

@ -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>,