Skip to content
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

Open
FMorschel opened this issue Feb 7, 2025 · 6 comments
Open

[linter] unnecessary_else_block suggestion #60078

FMorschel opened this issue Feb 7, 2025 · 6 comments
Labels
area-devexp For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages. devexp-linter Issues with the analyzer's support for the linter package linter-lint-request P3 A lower priority bug or feature request type-enhancement A request for a change that isn't a bug

Comments

@FMorschel
Copy link
Contributor

FMorschel commented Feb 7, 2025

Inspired by #60008.

If you have the following code:

void f(bool c) {
  if (c) {
    // do something
    return;
  } else {
    // do something else
  }
}

The above // do something else does not need to be inside an else { ... } 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

@FMorschel FMorschel added the area-analyzer Use area-analyzer for Dart analyzer issues, including the analysis server and code completion. label Feb 7, 2025
@pq pq added linter-lint-request type-enhancement A request for a change that isn't a bug P3 A lower priority bug or feature request labels Feb 7, 2025
@pq
Copy link
Member

pq commented Feb 7, 2025

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).

/cc @lrhn @munificent @natebosch @goderbauer

@lrhn
Copy link
Member

lrhn commented Feb 7, 2025

Which style I use depends on how I think of the problem.
I use the no-else for early bailout or default, but could choose to use an else branch if the two branches are more equal alternatives.

Not something I would consistently give a recommendation for in either direction.

@FMorschel
Copy link
Contributor Author

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!

@lrhn
Copy link
Member

lrhn commented Feb 7, 2025

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.

@munificent
Copy link
Member

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 else clause so that it's symmetric with the others and it's clearer that every case is being covered.

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 else clause at the end and instead rely on the early return of the preceding if.

So I don't think either style is clearly better in all contexts.

@natebosch
Copy link
Member

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.

@bwilkerson bwilkerson added devexp-linter Issues with the analyzer's support for the linter package area-devexp For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages. and removed area-analyzer Use area-analyzer for Dart analyzer issues, including the analysis server and code completion. labels Feb 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-devexp For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages. devexp-linter Issues with the analyzer's support for the linter package linter-lint-request P3 A lower priority bug or feature request type-enhancement A request for a change that isn't a bug
Projects
None yet
Development

No branches or pull requests

6 participants