-
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
[linter] unnecessary_else_block
suggestion
#60078
Comments
Cool! While I prefer this style in principle myself, I'd be curious to know if there's a general agreement (and if this style is preferred enough to recommend generally). |
Which style I use depends on how I think of the problem. Not something I would consistently give a recommendation for in either direction. |
I'd actually be interested in knowing whether this makes any difference in performance too, or only for indentation/meaning purposes. I'm not sure how to test that, if anyone wants to do that for me I'd appreciate it! |
If it makes any difference for performance, you have my permission to mock the compiler writers for not doing trivial optimization. It's very clear that the two styles have equivalent observable behavior, so if they don't generate the exact same code, it should be because neither code is inherently superior. Otherwise the inferior code can be optimized. |
For years, I've considered whether "Effective Dart" should say anything about this. I've mostly come to the conclusion that it's best to no be opinionated and let users decide. In my own code, I find myself preferring either style depending on the context. If I have code like: f() {
if (c1) {
return ...
} else if (c2) {
return ...
} else if (c3) {
return ...
} else {
return ...
}
} Then I prefer the final clause to be an On the other hand: f() {
if (c1) return ...
doSomeStuff();
if (c2) {
return ...
}
return ...
} If there are other early returns in the function, then I'm inclined to not use an So I don't think either style is clearly better in all contexts. |
My initial reaction is that I don't think it makes sense to mandate either style in particular because either may be more readable. for a given block of code. I'm a little curious whether on the balance more authors would be helped by avoiding the extra indentation than the cases where authors are annoyed because they prefer the else block. I don't think I can make a strong argument that it should be in the recommended set though. |
Inspired by #60008.
If you have the following code:
The above
// do something else
does not need to be inside anelse { ... }
block.I'm suggesting a lint that would detect this (leaving the function on earlier branches) and suggest removing the block since that could help with indentation for big lines that come after this point. Something like
unnecessary_else_block
.// CC @pq
The text was updated successfully, but these errors were encountered: