dap: Rewrite breakpoints so that there's a single set maintained

This commit is contained in:
Blaž Hrastnik 2021-11-30 17:52:39 +09:00
parent 3633f85b38
commit 8ffafb826f
6 changed files with 163 additions and 181 deletions

View file

@ -35,7 +35,6 @@ pub struct Client {
pub thread_id: Option<ThreadId>,
/// Currently active frame for the current thread.
pub active_frame: Option<usize>,
pub breakpoints: Vec<Breakpoint>,
pub quirks: DebuggerQuirks,
}
@ -81,7 +80,6 @@ impl Client {
thread_states: HashMap::new(),
thread_id: None,
active_frame: None,
breakpoints: vec![],
quirks: DebuggerQuirks::default(),
};