From d6e8a44d8510b2ae75d660a5f260d97e6dc7e797 Mon Sep 17 00:00:00 2001 From: Blaž Hrastnik Date: Sun, 17 Oct 2021 14:11:59 +0900 Subject: dap: Fix examples --- helix-dap/examples/dap-dlv.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'helix-dap/examples/dap-dlv.rs') 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() -- cgit v1.2.3-70-g09d2