9bd89a769d
For some reason, when a `CheckSorted` presubmit invokes `verify_sorted_test.dart`, the `-r` flag is preventing the compiler from picking up the proper language version from `.dart_tool/package_config.json`. This is interfering with my ability to run presubmits for https://dart-review.googlesource.com/c/sdk/+/505046. See https://github.com/dart-lang/sdk/issues/63464 for additional details. As a temporary workaround, this CL removes the `-r` flag. It should be reverted once https://github.com/dart-lang/sdk/issues/63464 has been fixed (and the pre-built SDK has been updated to include the fix). Change-Id: Ibc48eec4ef382d6afe17d73454f07dcd6a6a6964 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/506700 Commit-Queue: Paul Berry <paulberry@google.com> Reviewed-by: Samuel Rawlins <srawlins@google.com> Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
analysis_server
A long-running process that provides analysis results to other tools.
The analysis server is designed to provide on-going analysis of one or more code bases as those code bases are changing.
Using the server
The analysis server is not intended to be used stand-alone, and therefore does not have a human-friendly user interface.
Clients (typically tools, such as an editor) are expected to run the analysis
server in a separate process and communicate with it using a JSON protocol. The
original protocol is specified in the file analysis_server/doc/api.html
and Language Server Protocol support is documented in
tool/lsp_spec/README.md.
Features and bugs
Please file feature requests and bugs at the issue tracker.