Skip to content

Commit

Permalink
Version 3.3.0-202.0.dev
Browse files Browse the repository at this point in the history
Merge b08ab65 into dev
  • Loading branch information
Dart CI committed Dec 7, 2023
2 parents 4b22e64 + b08ab65 commit b6d5e01
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions pkg/dds/lib/src/dap/base_debug_adapter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@ abstract class BaseDebugAdapter<TLaunchArgs extends LaunchRequestArguments,
id: ErrorMessageType.general,
format: '{message}\n{stack}',
variables: {'message': messageText, 'stack': '$s'},
// DAP specification did not specify how to handle the case where
// showUser does not exist. VSCode defaults to true, but some other
// systems might default it to false.
// Always pass true to be consistent.
showUser: true,
);
final response = Response(
success: false,
Expand Down
2 changes: 1 addition & 1 deletion tools/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ CHANNEL dev
MAJOR 3
MINOR 3
PATCH 0
PRERELEASE 201
PRERELEASE 202
PRERELEASE_PATCH 0

0 comments on commit b6d5e01

Please sign in to comment.