dart-sdk/pkg/analysis_server
Paul Berry 0c31815f1c Transition analyzer and analysis_server to new astFactory.
This is the same as 1d028eed8d (which
was reverted) except that it doesn't remove the old AST factory
constructors (which broke dev_compiler).  The removal of old AST
factory constructors will be done in a follow-up CL so that if it
unexpectedly breaks any other clients we will be able to revert it
without reverting this CL.

R=scheglov@google.com

Review URL: https://codereview.chromium.org/2536373008 .
2016-12-01 10:56:21 -08:00
..
benchmark Replace expect() with outOfTestExpect() in Analysis Server performance benchmark. 2016-10-12 12:57:03 -07:00
bin
doc Regen the analysis server spec to include the diagnostic domain. 2016-11-20 10:27:58 -08:00
lib Transition analyzer and analysis_server to new astFactory. 2016-12-01 10:56:21 -08:00
test Add libraries in corrections using SourceInfo instance of LibraryElement. 2016-12-01 10:22:48 -08:00
tool Regen the analysis server spec to include the diagnostic domain. 2016-11-20 10:27:58 -08:00
.analysis_options Mark analysis_server as being strong-mode clean 2016-08-01 12:23:22 -07:00
.gitignore Add a gitignore file for the analysis_server package. 2016-11-20 10:05:11 -08:00
AUTHORS
BUILD.gn Added build files for the analyzer and analysis_server packages. 2016-10-06 14:00:19 -07:00
CHANGELOG.md
CONTRIBUTING.md
LICENSE
pubspec.yaml Move analysis_server dependency on analyzer back to 0.28.0 2016-10-06 20:38:35 -07:00
README.md Add a link to API spec (#27158) 2016-08-25 11:04:35 -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 protocol is specified in the file analysis_server/doc/api.html.

Features and bugs

Please file feature requests and bugs at the issue tracker.