diff options
author | Blaž Hrastnik | 2021-08-20 05:06:55 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-20 05:06:55 +0000 |
commit | a54b09e3fe6eaf72ab7a4f3664efc0b8b7cf13fd (patch) | |
tree | d64c38f4c9d79b11e24dbf5eb89a72111f11903b /helix-dap/src/client.rs | |
parent | 94a1951d40d26f4f535bdb5aab5668c84fdd95ae (diff) |
dap: Split out launch from init
Diffstat (limited to 'helix-dap/src/client.rs')
-rw-r--r-- | helix-dap/src/client.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs index 84704b96..e7e714b6 100644 --- a/helix-dap/src/client.rs +++ b/helix-dap/src/client.rs @@ -265,7 +265,7 @@ impl Client { pub async fn set_breakpoints( &mut self, - file: String, + file: PathBuf, breakpoints: Vec<SourceBreakpoint>, ) -> Result<Option<Vec<Breakpoint>>> { let args = requests::SetBreakpointsArguments { |