dap: implement threads request

This commit is contained in:
Dmitry Sharshakov 2021-08-12 19:35:55 +03:00 committed by Blaž Hrastnik
parent 5f3e806341
commit 7d2d4ed4a8
2 changed files with 22 additions and 0 deletions

View file

@ -42,6 +42,7 @@ pub async fn main() -> Result<()> {
println!("configurationDone: {:?}", client.configuration_done().await);
println!("stopped: {:?}", client.wait_for_stopped().await);
println!("threads: {:#?}", client.threads().await);
println!("stack trace: {:#?}", client.stack_trace(1).await);
let mut _in = String::new();