-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bad warning for LinkedHashMap constructor (prefer_collection_literals) #58565
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.
linter-false-positive
linter-set-recommended
P2
A bug or feature request we're likely to work on
Comments
Thanks for the report and repro @keithshep ! |
Duplicate of #57993. |
copybara-service bot
referenced
this issue
Sep 1, 2023
There is a basic premise in this rule which we cannot satisfy exactly: we need to disallow `LinkedHashSet()` unless the context type requires the developer to use `LinkedHashSet`. But the context type is long gone when the lint rule is run. This CL adds some logic to try to attempt figuring out the context type in the cases where users have filed bugs, but it will never be super accurate. Fixes https://github.com/dart-lang/linter/issues/4736 Fixes https://github.com/dart-lang/linter/issues/3057 Fixes https://github.com/dart-lang/linter/issues/1649 Fixes https://github.com/dart-lang/linter/issues/2795 Change-Id: I3e6c6de81084dca2825488c89830ab3e7ea63186 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/323680 Reviewed-by: Phil Quitslund <[email protected]> Reviewed-by: Konstantin Shcheglov <[email protected]> Commit-Queue: Samuel Rawlins <[email protected]>
copybara-service bot
referenced
this issue
Sep 4, 2023
…pe more" This reverts commit cd8a337. Reason for revert: lint starts barking at the wrong tree: b/298917960 Original change's description: > linter: Refactor prefer_collection_literals to use context type more > > There is a basic premise in this rule which we cannot satisfy exactly: > we need to disallow `LinkedHashSet()` unless the context type requires > the developer to use `LinkedHashSet`. But the context type is long > gone when the lint rule is run. > > This CL adds some logic to try to attempt figuring out the context > type in the cases where users have filed bugs, but it will never be > super accurate. > > Fixes https://github.com/dart-lang/linter/issues/4736 > Fixes https://github.com/dart-lang/linter/issues/3057 > Fixes https://github.com/dart-lang/linter/issues/1649 > Fixes https://github.com/dart-lang/linter/issues/2795 > > Change-Id: I3e6c6de81084dca2825488c89830ab3e7ea63186 > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/323680 > Reviewed-by: Phil Quitslund <[email protected]> > Reviewed-by: Konstantin Shcheglov <[email protected]> > Commit-Queue: Samuel Rawlins <[email protected]> Change-Id: I980053dd51ffd4447721e0ad7436b07ca704b554 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/324021 Bot-Commit: Rubber Stamper <[email protected]> Reviewed-by: Alexander Thomas <[email protected]> Commit-Queue: Ilya Yanok <[email protected]>
copybara-service bot
referenced
this issue
Sep 5, 2023
…ntext type more"" This reverts commit cbdae14. In addition, Fix prefer_collection_literals for methods with expression bodies Original description: linter: Refactor prefer_collection_literals to use context type more There is a basic premise in this rule which we cannot satisfy exactly: we need to disallow `LinkedHashSet()` unless the context type requires the developer to use `LinkedHashSet`. But the context type is long gone when the lint rule is run. This CL adds some logic to try to attempt figuring out the context type in the cases where users have filed bugs, but it will never be super accurate. Fixes https://github.com/dart-lang/linter/issues/4736 Fixes https://github.com/dart-lang/linter/issues/3057 Fixes https://github.com/dart-lang/linter/issues/1649 Fixes https://github.com/dart-lang/linter/issues/2795 Change-Id: I958ba69a56866c18523ce6cbf62645ef8e028f6b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/324260 Commit-Queue: Samuel Rawlins <[email protected]> Reviewed-by: Konstantin Shcheglov <[email protected]>
devoncarew
added
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.
labels
Nov 19, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
linter-false-positive
linter-set-recommended
P2
A bug or feature request we're likely to work on
Describe the issue
The linter gives a bad warning for LinkedHashMap constructor: "Use collection literals when possible."
To Reproduce
if the suggestion is followed to convert to a literal invalid code is generated:
x = <String, String>{};
Expected behavior
No such warning for
LinkedHashMap()
The text was updated successfully, but these errors were encountered: