Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(355)

Side by Side Diff: pkg/analyzer_plugin/README.md

Issue 2973753003: Initial documentation for the plugin package (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # analyzer_plugin 1 # analyzer_plugin
2 2
3 A framework for building plugins for the analysis server. 3 A framework for building plugins for the analysis server.
4 4
5 ## Usage 5 ## Usage
6 6
7 **Note:** The plugin support is not currently available for general use.
8
9 Plugins are written in Dart and are run in the same VM as the analysis server.
10 The analysis server runs each plugin in a separate isolate and communicates with
11 the plugin using a [plugin API][pluginapi]. This API is similar to the API used
12 by the analysis server to communicate with clients.
13
14 Plugins are automatically discovered and run by the analysis server.
15
16 This package contains support code to make it easier to write a plugin. There is
17 a [tutorial][tutorial] describing how to use the support in this package.
18
7 ## Support 19 ## Support
8 20
9 Post issues and feature requests on the [issue tracker][issues]. 21 Post issues and feature requests on the [issue tracker][issues].
10 22
11 Questions and discussions are welcome at the 23 Questions and discussions are welcome at the
12 [Dart Analyzer Discussion Group][list]. 24 [Dart Analyzer Discussion Group][list].
13 25
14 ## License 26 ## License
15 27
16 See the [LICENSE] file. 28 See the [LICENSE] file.
17 29
18 [issues]: https://github.com/dart-lang/sdk/issues 30 [issues]: https://github.com/dart-lang/sdk/issues
19 [LICENSE]: https://github.com/dart-lang/sdk/blob/master/pkg/analyzer/LICENSE 31 [LICENSE]: https://github.com/dart-lang/sdk/blob/master/pkg/analyzer/LICENSE
20 [list]: https://groups.google.com/a/dartlang.org/forum/#!forum/analyzer-discuss 32 [list]: https://groups.google.com/a/dartlang.org/forum/#!forum/analyzer-discuss
21 [pluginapi]: https://htmlpreview.github.io/?https://github.com/dart-lang/sdk/blo b/master/pkg/analyzer_plugin/doc/api.html 33 [pluginapi]: https://htmlpreview.github.io/?https://github.com/dart-lang/sdk/blo b/master/pkg/analyzer_plugin/doc/api.html
34 [tutorial]: doc/tutorial/tutorial.md
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer_plugin/doc/tutorial/assists.md » ('j') | pkg/analyzer_plugin/doc/tutorial/assists.md » ('J')

Powered by Google App Engine
This is Rietveld 408576698