diff options
author | Dmitry Sharshakov | 2021-08-12 18:23:55 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-20 04:43:54 +0000 |
commit | e11b67b0db32c6459ab672a23b04c66de093e4ee (patch) | |
tree | 4214665af5d6571657a6ca9bbc862a2819e7ada6 /helix-dap/examples/dap-basic.rs | |
parent | 0fa127b1051ad9af9371a1c9b424921e4f52d066 (diff) |
dap: add missing fields to structs
Diffstat (limited to 'helix-dap/examples/dap-basic.rs')
-rw-r--r-- | helix-dap/examples/dap-basic.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-dap/examples/dap-basic.rs b/helix-dap/examples/dap-basic.rs index 9c4f2f3e..81decd1a 100644 --- a/helix-dap/examples/dap-basic.rs +++ b/helix-dap/examples/dap-basic.rs @@ -30,6 +30,9 @@ pub async fn main() -> Result<()> { vec![SourceBreakpoint { line: 8, column: Some(2), + condition: None, + hit_condition: None, + log_message: None, }] ) .await |