Migrate to null safety #58295
Labels
analyzer-linter
Issues with the analyzer's support for the linter package
area-analyzer
Use area-analyzer for Dart analyzer issues, including the analysis server and code completion.
https://dart-review.googlesource.com/c/sdk/+/176486 will (hopefully) migrate
package:analyzer
to null safety.But at least several tests are failing, because they expect that
package:linter
is available, and rules are registered. But we cannot make it available because importing an unmigrated library into a migrated test library file leads to a run error (to prevent accidentally think that you are null safe while you are not). So, we disable these tests.Also most of the clients of
package:analyzer
externally (analyzer_cli
) and internally (g3_analyzer_cli
) register lint rules. This means that these clients cannot be made null safe untilpackage:linter
is migrated.Then we will able to re-enable tests.
The text was updated successfully, but these errors were encountered: