Analyzer code should start passing a language version to dart_style #56685
Labels
area-analyzer
Use area-analyzer for Dart analyzer issues, including the analysis server and code completion.
P2
A bug or feature request we're likely to work on
type-enhancement
A request for a change that isn't a bug
Greetings analyzer team friends!
The formatter is moving to being language version aware. This means that when it's parsing some code, it needs to be told what language version to parse it as. The
DartFormatter
constructor now takes an optional parameter where you can pass in the language version. In a future version of dart_style, that parameter will become mandatory.If you own code that uses dart_style as a library, you should update your code to pass in a language version. To migrate:
If this code is inside a package (as opposed to, say, the Dart core libraries), then update your constraint on dart_style to
^2.3.7
. That's the version where the new parameter was added.If you know the precise language version the code should be parsed as, then pass in that version (as an instance of the pub_semver package's
Version
class). This is what "real" tools should do.For simple one-off scripts and other utilities where precise behavior doesn't matter much, you can pass in
DartFormatter.latestLanguageVersion
to unconditionally parse the code as the latest language version that the formatter itself supports.When the
--tall-style
experiment flag ships, the passed in language version will also be used to determine whether you get the current formatting style or the new "tall" style.I did a search through the SDK, and the constructor calls that I think are relevant are:
Thank you!
Implementation:
g3/utilities.dart
legacy/edit_format.dart
legacy/edit_format_if_enabled.dart
lsp/source_edits.dart
lsp_spec/codegen_dart.dart
change_builder/change_builder_dart.dart
Testing:
Testing is currently tricky as the formatter is not yet gating tall-style on language version (requiring an experiment flag in the meantime). We'll want to loop back add tests once that work is complete.
edit_format_test.dart
to test tall/short stylesformat_test.dart
to test tall/short stylessource_edits_test.dart
to test tall/short stylesThe text was updated successfully, but these errors were encountered: