Files
sdk/pkg/analysis_server
Sam Rawlins f811111f80 linter: avoid_final_parameters: avoid duplicate reporting
The lint rule was sometimes reported in the same positions as the
warning.

In 'remove_lexeme_test', there were tests for removing `final` in the
lint rule case, which just needed to be moved to testing removing
`final` in the warning case. Otherwise the test cases are unchanged.

Change-Id: I3f600b9bc7846069e793e0902dcb2456e7106ab6
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/494163
Reviewed-by: Keerti Parthasarathy <keertip@google.com>
Commit-Queue: Samuel Rawlins <srawlins@google.com>
2026-04-10 10:28:42 -07:00
..

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.