diff options
author | Dmitry Sharshakov | 2021-08-12 16:35:55 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-20 04:43:54 +0000 |
commit | 7d2d4ed4a86f28bfce8d2fda8a774701d80f5175 (patch) | |
tree | 77f047f0863d532c2ba941e6ac991ffd1f443bc2 /helix-dap/examples | |
parent | 5f3e8063415291e91d856fe3ed1eea16b058d0e1 (diff) |
dap: implement threads request
Diffstat (limited to 'helix-dap/examples')
-rw-r--r-- | helix-dap/examples/dap-basic.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-dap/examples/dap-basic.rs b/helix-dap/examples/dap-basic.rs index 434f2eeb..cc05cd8e 100644 --- a/helix-dap/examples/dap-basic.rs +++ b/helix-dap/examples/dap-basic.rs @@ -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(); |