Update comment about debugSdkLibraries and debugExternalPackageLibraries.

According to
https://dart.googlesource.com/sdk/+/7512050101f25530824db6200f4770ed8f083251/pkg/dds/lib/src/dap/adapters/dart.dart#2527,
these two fields are `true` by default.

Change-Id: I085649e45bbf4a0837353674e179a376485cf665
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/349626
Auto-Submit: Chingjun Lau <chingjun@google.com>
Reviewed-by: Ben Konyi <bkonyi@google.com>
Commit-Queue: Ben Konyi <bkonyi@google.com>
Reviewed-by: Helin Shiah <helinx@google.com>
This commit is contained in:
Chingjun Lau 2024-02-05 21:10:49 +00:00 committed by Commit Queue
parent 0ea5013250
commit bb94c1265c

View file

@ -169,7 +169,7 @@ class DartCommonLaunchAttachRequestArguments extends RequestArguments {
/// Whether SDK libraries should be marked as debuggable.
///
/// Treated as `false` if null, which means "step in" will not step into SDK
/// Treated as `true` if null. If `false`, "step in" will not step into SDK
/// libraries.
final bool? debugSdkLibraries;
@ -180,7 +180,7 @@ class DartCommonLaunchAttachRequestArguments extends RequestArguments {
/// Whether external package libraries should be marked as debuggable.
///
/// Treated as `false` if null, which means "step in" will not step into
/// Treated as `true` if null. If `false`, "step in" will not step into
/// libraries in packages that are not either the local package or a path
/// dependency. This allows users to debug "just their code" and treat Pub
/// packages as block boxes.