We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b27a2bb commit da97004Copy full SHA for da97004
clippy_lints/src/cognitive_complexity.rs
@@ -62,6 +62,7 @@ impl CognitiveComplexity {
62
63
let mut cc = 1u64;
64
let mut returns = 0u64;
65
+ let mut prev_expr: Option<&ExprKind<'tcx>> = None;
66
let _: Option<!> = for_each_expr_without_closures(expr, |e| {
67
match e.kind {
68
ExprKind::If(_, _, _) => {
@@ -73,9 +74,14 @@ impl CognitiveComplexity {
73
74
}
75
cc += arms.iter().filter(|arm| arm.guard.is_some()).count() as u64;
76
},
- ExprKind::Ret(_) => returns += 1,
77
+ ExprKind::Ret(_) => {
78
+ if !matches!(prev_expr, Some(ExprKind::Ret(_))) {
79
+ returns += 1;
80
+ }
81
+ },
82
_ => {},
83
84
+ prev_expr = Some(&e.kind);
85
ControlFlow::Continue(())
86
});
87
0 commit comments