@@ -48,11 +48,10 @@ pub(super) fn lint<'a, 'tcx>(
48
48
let msg = if is_option {
49
49
// comparing the snippet from source to raw text ("None") below is safe
50
50
// because we already have checked the type.
51
- let arg = if unwrap_snippet == "None" { "None" } else { "a" } ;
52
- let suggest = if unwrap_snippet == "None" {
53
- "and_then(f)"
51
+ let ( arg, suggest) = if unwrap_snippet == "None" {
52
+ ( "None" , "and_then(f)" )
54
53
} else {
55
- " map_or(a, f)"
54
+ ( "a" , " map_or(a, f)")
56
55
} ;
57
56
58
57
format ! (
@@ -67,6 +66,12 @@ pub(super) fn lint<'a, 'tcx>(
67
66
. to_string ( )
68
67
} ;
69
68
69
+ let lint = if is_option {
70
+ OPTION_MAP_UNWRAP_OR
71
+ } else {
72
+ RESULT_MAP_UNWRAP_OR
73
+ } ;
74
+
70
75
// lint, with note if neither arg is > 1 line and both map() and
71
76
// unwrap_or() have the same span
72
77
let multiline = map_snippet. lines ( ) . count ( ) > 1 || unwrap_snippet. lines ( ) . count ( ) > 1 ;
@@ -81,29 +86,9 @@ pub(super) fn lint<'a, 'tcx>(
81
86
"replace `map({}).unwrap_or({})` with `{}`" ,
82
87
map_snippet, unwrap_snippet, suggest
83
88
) ;
84
- span_note_and_lint (
85
- cx,
86
- if is_option {
87
- OPTION_MAP_UNWRAP_OR
88
- } else {
89
- RESULT_MAP_UNWRAP_OR
90
- } ,
91
- expr. span ,
92
- & msg,
93
- expr. span ,
94
- & note,
95
- ) ;
89
+ span_note_and_lint ( cx, lint, expr. span , & msg, expr. span , & note) ;
96
90
} else if same_span && multiline {
97
- span_lint (
98
- cx,
99
- if is_option {
100
- OPTION_MAP_UNWRAP_OR
101
- } else {
102
- RESULT_MAP_UNWRAP_OR
103
- } ,
104
- expr. span ,
105
- & msg,
106
- ) ;
91
+ span_lint ( cx, lint, expr. span , & msg) ;
107
92
} ;
108
93
}
109
94
}
0 commit comments