dart-sdk/pkg/analysis_server
Konstantin Shcheglov eb51dbc403 Fix prefix start for locations before a token.
Bug: https://buganizer.corp.google.com/issues/161242256
Change-Id: I67a5ee774090f155d53e9c71e7a06d848e1d9c72
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/159324
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Reviewed-by: Keerti Parthasarathy <keertip@google.com>
Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
2020-08-20 15:51:59 +00:00
..
benchmark Issue 42797. Understand in legacy libraries that a function returning Never (in Null Safety library) never returns. (reland) 2020-07-23 00:01:12 +00:00
bin Enable omit_local_variable_types in analysis_server 2020-03-30 03:58:44 +00:00
doc bulk fix protocol 2020-07-10 14:20:07 +00:00
lib Fix prefix start for locations before a token. 2020-08-20 15:51:59 +00:00
test Fix prefix start for locations before a token. 2020-08-20 15:51:59 +00:00
tool External variable support: add a notion of external top level variables to the AST and element model. 2020-08-12 15:59:24 +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 the pubspec.yaml in analysis_server 2020-08-19 15:41:22 +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.