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] identical_if_branch #60008

Open
stephane-archer opened this issue Jan 29, 2025 · 5 comments
Open

[linter] identical_if_branch #60008

stephane-archer opened this issue Jan 29, 2025 · 5 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-proposal P3 A lower priority bug or feature request type-enhancement A request for a change that isn't a bug

Comments

@stephane-archer
Copy link

int foo(int i)
{
    if (i ==42) { // useless if
        print(i);
       return i;
    }
    print(i);
    return i;
}
@stephane-archer stephane-archer added the area-analyzer Use area-analyzer for Dart analyzer issues, including the analysis server and code completion. label Jan 29, 2025
@FMorschel
Copy link
Contributor

Somewhat similar to #59529

@stephane-archer
Copy link
Author

@FMorschel not exactly

@FMorschel
Copy link
Contributor

@stephane-archer I didn't say they are dupes, I only said they are similar in the request but for different cases. I only try to mention similar issues together in case someone else finds them in the future they can follow anything similar if they want to. I found some cases, if not here in other repos, where similar issues can be resolved together or can inspire one another in small tweaks or features.

In this case, both our issues are trying to solve the issue of having duplicate code inside a block where it could be detected by a lint rather than the programmer.

@stephane-archer
Copy link
Author

@FMorschel I see your point.

Some maintainers (the Flutter team) tend to mark everything as duplicates to reduce the number of tickets (apparently they have the incentive to close issues rather than solve them) which is why I was quite defensive.

@pq
Copy link
Member

pq commented Jan 29, 2025

@bwilkerson has done some thinking about detecting duplication

@pq pq added type-enhancement A request for a change that isn't a bug P3 A lower priority bug or feature request labels Jan 29, 2025
@bwilkerson bwilkerson added devexp-linter Issues with the analyzer's support for the linter package linter-lint-proposal 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-proposal 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

4 participants