[java] Improve MissingBreakInSwitch #2894
Labels
a:false-negative
PMD doesn't flag a problematic piece of code
an:enhancement
An improvement on existing features / rules
Milestone
Is your feature request related to a problem? Please describe.
Problem 1: false-negatives
MissingBreakInSwitch currently only checks that there are as many breaks as there are cases. This fails on eg
The above produces no violation as it has 4 cases and 4 breaks. However, all of those cases may fall through to next one (except the last obviously). This is because the strategy of the rule is just to count break statements.
Problem 2: naming
I think the rule's purpose is to avoid implicit fall through to the next case, as this may be unexpected. However the rule's name just describes its implementation strategy, and not particularly well, as fallthrough may also be avoided by continue, return and throw statements (cases that the rule tries to handle as well).
--> see #3361
Describe the solution you'd like
I think we should
rename the rule to ImplicitSwitchFallThroughsee [java] Rename rule MissingBreakInSwitch to ImplicitSwitchFallThrough #3361@SuppressWarnings("fallthrough")
(refs [java] Full @SuppressWarnings support #1900), and comments like// fallthrough
, that make the fallthrough behavior evident to the reader.consider switch expressionssee [java] ImplicitSwitchFallThrough should consider switch expressions #3362Describe alternatives you've considered
None
Additional context
This will fix
The UnusedAssignmentRule already implements an exploration pass that follows the control flow of the program. It's very easy to extend to detect whether a switch case has fallen through. In fact, it's more about extending it to give access to the information, as the information is already computed by the rule. I've done this in my branches, see MissingBreakInSwitchRule
The text was updated successfully, but these errors were encountered: