diff options
Diffstat (limited to 'helix-dap/examples/dap-lldb.rs')
-rw-r--r-- | helix-dap/examples/dap-lldb.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/helix-dap/examples/dap-lldb.rs b/helix-dap/examples/dap-lldb.rs index ae18b214..935de5fe 100644 --- a/helix-dap/examples/dap-lldb.rs +++ b/helix-dap/examples/dap-lldb.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; @@ -111,7 +111,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() |