Skip to content

Commit da97004

Browse files
committed
Multiple return statements doesnt decrease cognitive complexity level multiple times
1 parent b27a2bb commit da97004

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

clippy_lints/src/cognitive_complexity.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ impl CognitiveComplexity {
6262

6363
let mut cc = 1u64;
6464
let mut returns = 0u64;
65+
let mut prev_expr: Option<&ExprKind<'tcx>> = None;
6566
let _: Option<!> = for_each_expr_without_closures(expr, |e| {
6667
match e.kind {
6768
ExprKind::If(_, _, _) => {
@@ -73,9 +74,14 @@ impl CognitiveComplexity {
7374
}
7475
cc += arms.iter().filter(|arm| arm.guard.is_some()).count() as u64;
7576
},
76-
ExprKind::Ret(_) => returns += 1,
77+
ExprKind::Ret(_) => {
78+
if !matches!(prev_expr, Some(ExprKind::Ret(_))) {
79+
returns += 1;
80+
}
81+
},
7782
_ => {},
7883
}
84+
prev_expr = Some(&e.kind);
7985
ControlFlow::Continue(())
8086
});
8187

0 commit comments

Comments
 (0)