mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
dap: Rewrite breakpoints so that there's a single set maintained
This commit is contained in:
parent
3633f85b38
commit
8ffafb826f
6 changed files with 163 additions and 181 deletions
|
@ -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(),
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue