With a simple move of two classes, Fix and FixContent. The class moves are not exactly no-ops. I moved each class into its own library and made the following changes: * Start doc comments with third person verbs [1]. * Make `Fix` class **final**. * Make `FixContext` class **interface**. [1]: https://dart.dev/effective-dart/documentation#prefer-starting-function-or-method-comments-with-third-person-verbs Work towards https://github.com/dart-lang/sdk/issues/53402 Cq-Include-Trybots: dart-internal/g3.dart-internal.try:g3-cbuild-try Change-Id: Ic046b236d634543832825db8746e0abdca5191fe Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/355889 Reviewed-by: Alexander Thomas <athom@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Samuel Rawlins <srawlins@google.com>
3.0 KiB
server_plugin package
This package is being developed for the second incarnation of Dart Analyzer plugins. It is in an intermediate state, and a few things must be kept in mind during this phase of development:
- This package is not to be published on pub. Yet. We may decide to go
forward with this package as a full replacement of the
analyzer_pluginpackage, in which case we would ultimately publish it. But we may choose a different plan. Until we finalize, this package is not to be published. - In order to support the above point, no pub-publishable code can depend on
this package. At no point can we introduce a dependency from a package
like
analyzeroranalyzer_pluginto this package. If we did so, then at the next time we published that package to pub, we would need to publish this package to pub. No. In short, I think what this means is that only theanalsis_serverpackage can depend on this package (until we decide the final path to publishing the next Dart Analyzer plugins story.
Migration of code between packages
As part of the design of the new Dart Analyzer plugins, much code will shift around, in a few directions.
-
analysis_serverpackage toserver_pluginpackage: The API of the new Dart Analyzer plugins focuses around two primary concepts: lint rules and quick fixes. Quick assists may be chosen as a third important concept. Lint rule code has typically lived in theanalyzerpackage, and does not need to move. (It's presense in theanalyzerpackage could be deprecated in favor of this package, but it is not important for the implementation.)Quick fixes, however, have only existed in concept, and interface, and API, in the
analysis_serverpackage. That code needs to move to this package in order to be used in a Dart Analyzer plugin.A move from the
analysis_serverpackage to this package is not a breaking change. -
analyzer_pluginpackage toserver_pluginpackage: Care is being taken to decide where Dart Analyzer plugin code will live and how it will be published. It is not decided yet what the ultimate package API will be. Some code from analyzer_plugin may move to this package.A move from the
analyzer_pluginpackage is a breaking change. Extreme care must be taken. -
analyzer_pluginpackage toanalysis_serverpackage: There will be many components of the analysis server that currently live inanalyzer_plugin, because they were necessary for the first version of Dart Analyzer plugins), but are not part of the new Dart Analyzer plugins. These components can be moved safely back into theanalysis_serverpackage.In terms of priority, it is not crucial for such code to be moved out of the
analyzer_pluginpackage. It can live there indefinitely, and theanalysis_serverpackage can continue to depend on code from theanalyzer_pluginpackage, as shipped in the SDK.A move from the
analyzer_pluginpackage is a breaking change. Extreme care must be taken.