diff options
author | Dmitry Sharshakov | 2021-08-24 08:56:18 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-24 08:56:18 +0000 |
commit | c463142e5e43fa83fc5f8f714af72425d18ba216 (patch) | |
tree | f369a44f3ef4b1569d5fc414078d0d6c1c6846b9 /helix-dap/src/client.rs | |
parent | 34c6094604cfeca0c1338a20cf9e85bcd8d9b68b (diff) |
Create new debugger config format
Diffstat (limited to 'helix-dap/src/client.rs')
-rw-r--r-- | helix-dap/src/client.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs index ed4f8ed5..43afc4c6 100644 --- a/helix-dap/src/client.rs +++ b/helix-dap/src/client.rs @@ -225,7 +225,9 @@ impl Client { } pub fn capabilities(&self) -> &DebuggerCapabilities { - self.caps.as_ref().expect("debugger not yet initialized!") + self.caps + .as_ref() + .expect("debugger not yet initialized!") } pub async fn initialize(&mut self, adapter_id: String) -> Result<()> { |