diff options
Diffstat (limited to 'helix-dap/examples/dap-dlv.rs')
-rw-r--r-- | helix-dap/examples/dap-dlv.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/helix-dap/examples/dap-dlv.rs b/helix-dap/examples/dap-dlv.rs index dacc7045..24b26a74 100644 --- a/helix-dap/examples/dap-dlv.rs +++ b/helix-dap/examples/dap-dlv.rs @@ -1,4 +1,4 @@ -use helix_dap::{events, Client, Event, Payload, Result, SourceBreakpoint}; +use helix_dap::{events, Client, Event, Payload, Result, SourceBreakpoint, ThreadId}; use serde::{Deserialize, Serialize}; use serde_json::to_value; use tokio::sync::mpsc::UnboundedReceiver; @@ -109,7 +109,10 @@ pub async fn main() -> Result<()> { .read_line(&mut _in) .expect("Failed to read line"); - println!("continued: {:?}", client.continue_thread(0).await); + println!( + "continued: {:?}", + client.continue_thread(ThreadId::default()).await + ); let mut _in = String::new(); std::io::stdin() |