mirror of
https://github.com/helix-editor/helix.git
synced 2025-10-06 00:13:28 +02:00
dap: Rewrite breakpoints so that there's a single set maintained
This commit is contained in:
@@ -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(),
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user