You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if cond {
...}elseif cond1 {
bar
}elseif cond2 {
...}elseif cond3 {
...}else{
bar
}
This will trigger collapsible_if because of two equal bodies containing bar, but collapsing those ifs would be ugly and error prone, the code is idiomatic as it is.