File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -10,3 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1010
1111- Support for terminateDebuggee option letting the user choose to keep the debugee running. Press Alt when hovering over stop action.
1212- Handle breakpoints in a async manner.
13+
14+ ### Changed
15+
16+ - Do not display error dialog on failed eval
Original file line number Diff line number Diff line change @@ -961,7 +961,9 @@ class PhpDebugSession extends vscode.DebugSession {
961961 }
962962 this . sendResponse ( response )
963963 } catch ( error ) {
964- this . sendErrorResponse ( response , error )
964+ response . message = error . message
965+ response . success = false
966+ this . sendResponse ( response )
965967 }
966968 }
967969}
You can’t perform that action at this time.
0 commit comments