mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
dap: Fix examples
This commit is contained in:
parent
bda05ec4bf
commit
d6e8a44d85
@ -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()
|
||||
|
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user