a062462758
This CL is part of an effort to bump the SDK requirement to `3.12.0-0` for all the packages in `pkg` that are not published to `pub`, so that we can get better testing of the "private named parameters" feature. (Packages that *are* published to `pub` can't be safely bumped yet, because SDK 3.12 hasn't been released, and I don't want to block those packages' ability to publish useful updates to customers.) This change covers the following packages, which are owned by the developer experience team: - pkg/analysis_server_client - pkg/linter - pkg/server_plugin - pkg/telemetry Changes to `pubspec.yaml` files were made manually. Changes to `.dart` files were made automatically (with a few exceptions; see below), using `dart fix` to migrate to using private named parameters where it is possible to do so without changing semantics. Note that this migration is conservative; see https://github.com/dart-lang/sdk/issues/58607 for details. The exceptions are: - pkg/analysis_server_client/lib/handler/notification_handler.dart - pkg/analysis_server_client/lib/src/protocol/protocol_common.dart - pkg/analysis_server_client/lib/src/protocol/protocol_generated.dart These are code-generated files are checked by the trybots to make sure they are correct. The code generator runs the formatter, and the formatter's behavior depends on the current language version. To minimize the risk of accidental behavioral changes, I addressed this by manually running these files through `dart format` and then verifying that the result matches what the code generator would produce. Change-Id: I5a0baa28904890a0b7e4234b12f587f66a6a6964 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/487621 Reviewed-by: Samuel Rawlins <srawlins@google.com> Auto-Submit: Paul Berry <paulberry@google.com> Commit-Queue: Paul Berry <paulberry@google.com>
A set of utilities used by the tools in several analyzer-related packages.
Not meant to be published.