dart-sdk/pkg/analysis_server
Jaime Wren 431b57cbbb Add an additional category into completion_metrics.dart: parameter references
Change-Id: Ifed40f0eb0472894be92a41f105a6dfb36bcbb36
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/153367
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Jaime Wren <jwren@google.com>
2020-07-06 22:39:39 +00:00
..
benchmark Reland "[ VM / DartDev ] Run all debugging sessions via 'dart run'" 2020-05-13 19:58:56 +00:00
bin Enable omit_local_variable_types in analysis_server 2020-03-30 03:58:44 +00:00
doc Add a note to docs about enumerations being extended 2020-06-17 19:32:50 +00:00
lib Don't reuse LSP error code that triggers shutdown for refactor errors 2020-07-06 14:35:43 +00:00
test Add two failing tests in the local_reference_contributor_test.dart, after some for(var foo ...) ^, the completion is in the implicit statement which is in the scope of the foo declaration. 2020-07-06 17:06:10 +00:00
tool Add an additional category into completion_metrics.dart: parameter references 2020-07-06 22:39:39 +00:00
analysis_options.yaml Enable omit_local_variable_types in analysis_server 2020-03-30 03:58:44 +00:00
AUTHORS
CHANGELOG.md
CONTRIBUTING.md Update the contributing file for the analysis server. 2017-02-08 08:13:20 -08:00
LICENSE
pubspec.yaml Clean up no-publish comments in pubspecs 2020-06-23 10:34:09 +00:00
README.md Add some notes on using Dart LSP with Vim 2019-02-27 12:08:32 +00: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 (less complete) 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.