diff options
author | Blaž Hrastnik | 2021-11-30 08:52:39 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-11-30 08:56:00 +0000 |
commit | 8ffafb826faa75c76f74af3350d73adceb24e81d (patch) | |
tree | db28dd13d6f951de222771db830f3ed21f955b23 /helix-dap | |
parent | 3633f85b382d6f3e6324d08d880a8466aee67fa1 (diff) |
dap: Rewrite breakpoints so that there's a single set maintained
Diffstat (limited to 'helix-dap')
-rw-r--r-- | helix-dap/src/client.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs index 5e6d8d53..427db18c 100644 --- a/helix-dap/src/client.rs +++ b/helix-dap/src/client.rs @@ -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(), }; |