@@ -36,31 +36,36 @@ declare_clippy_lint! {
36
36
/// if res { /* ... */ }
37
37
/// ```
38
38
#[ clippy:: version = "1.45.0" ]
39
- pub BLOCKS_IN_IF_CONDITIONS ,
39
+ pub BLOCKS_IN_CONDITIONS ,
40
40
style,
41
41
"useless or complex blocks that can be eliminated in conditions"
42
42
}
43
43
44
- declare_lint_pass ! ( BlocksInIfConditions => [ BLOCKS_IN_IF_CONDITIONS ] ) ;
44
+ declare_lint_pass ! ( BlocksInConditions => [ BLOCKS_IN_CONDITIONS ] ) ;
45
45
46
46
const BRACED_EXPR_MESSAGE : & str = "omit braces around single expression condition" ;
47
- const COMPLEX_BLOCK_MESSAGE : & str = "in an `if` condition, avoid complex blocks or closures with blocks; \
48
- instead, move the block or closure higher and bind it with a `let`";
49
47
50
- impl < ' tcx > LateLintPass < ' tcx > for BlocksInIfConditions {
48
+ impl < ' tcx > LateLintPass < ' tcx > for BlocksInConditions {
51
49
fn check_expr ( & mut self , cx : & LateContext < ' tcx > , expr : & ' tcx Expr < ' _ > ) {
52
50
if in_external_macro ( cx. sess ( ) , expr. span ) {
53
51
return ;
54
52
}
55
- let Some ( ( cond, keyword) ) = higher:: If :: hir ( expr) . map ( |hif| ( hif. cond , "if" ) ) . or (
56
- if let ExprKind :: Match ( match_ex, _, MatchSource :: Normal ) = expr. kind {
57
- Some ( ( match_ex, "match" ) )
53
+
54
+ let Some ( ( cond, keyword, desc) ) = higher:: If :: hir ( expr)
55
+ . map ( |hif| ( hif. cond , "if" , "an `if` condition" ) )
56
+ . or ( if let ExprKind :: Match ( match_ex, _, MatchSource :: Normal ) = expr. kind {
57
+ Some ( ( match_ex, "match" , "a `match` scrutinee" ) )
58
58
} else {
59
59
None
60
- } ,
61
- ) else {
60
+ } )
61
+ else {
62
62
return ;
63
63
} ;
64
+ let complex_block_message = & format ! (
65
+ "in {desc}, avoid complex blocks or closures with blocks; \
66
+ instead, move the block or closure higher and bind it with a `let`",
67
+ ) ;
68
+
64
69
if let ExprKind :: Block ( block, _) = & cond. kind {
65
70
if block. rules == BlockCheckMode :: DefaultBlock {
66
71
if block. stmts . is_empty ( ) {
@@ -73,20 +78,12 @@ impl<'tcx> LateLintPass<'tcx> for BlocksInIfConditions {
73
78
let mut applicability = Applicability :: MachineApplicable ;
74
79
span_lint_and_sugg (
75
80
cx,
76
- BLOCKS_IN_IF_CONDITIONS ,
81
+ BLOCKS_IN_CONDITIONS ,
77
82
cond. span ,
78
83
BRACED_EXPR_MESSAGE ,
79
84
"try" ,
80
- format ! (
81
- "{}" ,
82
- snippet_block_with_applicability(
83
- cx,
84
- ex. span,
85
- ".." ,
86
- Some ( expr. span) ,
87
- & mut applicability
88
- )
89
- ) ,
85
+ snippet_block_with_applicability ( cx, ex. span , ".." , Some ( expr. span ) , & mut applicability)
86
+ . to_string ( ) ,
90
87
applicability,
91
88
) ;
92
89
}
@@ -99,9 +96,9 @@ impl<'tcx> LateLintPass<'tcx> for BlocksInIfConditions {
99
96
let mut applicability = Applicability :: MachineApplicable ;
100
97
span_lint_and_sugg (
101
98
cx,
102
- BLOCKS_IN_IF_CONDITIONS ,
99
+ BLOCKS_IN_CONDITIONS ,
103
100
expr. span . with_hi ( cond. span . hi ( ) ) ,
104
- COMPLEX_BLOCK_MESSAGE ,
101
+ complex_block_message ,
105
102
"try" ,
106
103
format ! (
107
104
"let res = {}; {keyword} res" ,
@@ -128,7 +125,7 @@ impl<'tcx> LateLintPass<'tcx> for BlocksInIfConditions {
128
125
let ex = & body. value ;
129
126
if let ExprKind :: Block ( block, _) = ex. kind {
130
127
if !body. value . span . from_expansion ( ) && !block. stmts . is_empty ( ) {
131
- span_lint ( cx, BLOCKS_IN_IF_CONDITIONS , ex. span , COMPLEX_BLOCK_MESSAGE ) ;
128
+ span_lint ( cx, BLOCKS_IN_CONDITIONS , ex. span , complex_block_message ) ;
132
129
return ControlFlow :: Continue ( Descend :: No ) ;
133
130
}
134
131
}
0 commit comments