diff options
author | Filip Dutescu | 2022-10-15 20:33:57 +0000 |
---|---|---|
committer | GitHub | 2022-10-15 20:33:57 +0000 |
commit | 2457111bf074d4b5c1d45f76e2c7d593ceec5895 (patch) | |
tree | eb1cb24ac55207c6f3fcd9279435481f14653bd6 /helix-dap | |
parent | 661f48d62f9d6920f6929b5ae5a5365401459c61 (diff) |
feat(csharp,debug): add C# debugger support (#4213)
Diffstat (limited to 'helix-dap')
-rw-r--r-- | helix-dap/src/types.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-dap/src/types.rs b/helix-dap/src/types.rs index 45f45cca..51ecfe1b 100644 --- a/helix-dap/src/types.rs +++ b/helix-dap/src/types.rs @@ -726,7 +726,7 @@ pub mod events { #[serde(tag = "event", content = "body")] // seq is omitted as unused and is not sent by some implementations pub enum Event { - Initialized, + Initialized(Option<DebuggerCapabilities>), Stopped(Stopped), Continued(Continued), Exited(Exited), |