aboutsummaryrefslogtreecommitdiff
path: root/helix-dap
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-09-03 02:48:55 +0000
committerBlaž Hrastnik2021-09-03 02:48:55 +0000
commit289303a30d8518890ae708b7fdd4996830df8642 (patch)
tree5df9fb531226f0ef44ea3b95e95aa07b2b43a3b4 /helix-dap
parent42f9718f55b58283253b2be85818a0aa0d5e3596 (diff)
dap: small TODO
Diffstat (limited to 'helix-dap')
-rw-r--r--helix-dap/src/client.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs
index 90ddeb2f..ba13b96a 100644
--- a/helix-dap/src/client.rs
+++ b/helix-dap/src/client.rs
@@ -35,7 +35,6 @@ pub struct Client {
pub thread_id: Option<usize>,
/// Currently active frame for the current thread.
pub active_frame: Option<usize>,
- pub is_running: bool, // TODO: track is_running per thread
}
impl Client {
@@ -83,7 +82,6 @@ impl Client {
thread_states: HashMap::new(),
thread_id: None,
active_frame: None,
- is_running: false,
};
tokio::spawn(Self::recv(server_rx, client_rx));