Skip to content

Commit

Permalink
Ignore flutter DAP message avoiding unecessary warning during debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdallo committed Feb 14, 2024
1 parent fe3d469 commit 699f947
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Add `lsp-dart-dap-tools-args` to configure custom args for DAP process.
* Fix flutter daemon failing to initialize on recent emacs versions.
* Ignore flutter DAP message avoiding unecessary warning during debug.

## 1.24.2

Expand Down
2 changes: 2 additions & 0 deletions lsp-dart-dap.el
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,8 @@ Call CALLBACK when the device is chosen and started successfully."
"Ignore this event.")
(cl-defmethod dap-handle-event ((_event (eql flutter.appStarted)) _session _params)
"Ignore this event.")
(cl-defmethod dap-handle-event ((_event (eql flutter.appStart)) _session _params)
"Ignore this event.")

(cl-defmethod dap-handle-event ((_event (eql dart.testRunNotification)) _session _params)
"Ignore this event.")
Expand Down

0 comments on commit 699f947

Please sign in to comment.