Skip to content

Commit 6ffbde2

Browse files
authored
Rollup merge of rust-lang#55138 - zackmdavis:the_paren_trap, r=pnkfelix
in which unused-parens suggestions heed what the user actually wrote Aaron Hill pointed out that unnecessary parens around a macro call (paradigmatically, `format!`) yielded a suggestion of hideous macro-expanded code. `span_to_snippet` is fallable as far as the type system is concerned, so the pretty-printing can live on in the oft-neglected `else` branch. Resolves rust-lang#55109.
2 parents f3858f8 + 475be10 commit 6ffbde2

File tree

3 files changed

+21
-11
lines changed

3 files changed

+21
-11
lines changed

src/librustc_lint/unused.rs

+14-4
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,13 @@ impl UnusedParens {
284284
parser::contains_exterior_struct_lit(&inner)
285285
};
286286
if !necessary {
287-
let pattern = pprust::expr_to_string(value);
288-
Self::remove_outer_parens(cx, value.span, &pattern, msg);
287+
let expr_text = if let Ok(snippet) = cx.sess().source_map()
288+
.span_to_snippet(value.span) {
289+
snippet
290+
} else {
291+
pprust::expr_to_string(value)
292+
};
293+
Self::remove_outer_parens(cx, value.span, &expr_text, msg);
289294
}
290295
}
291296
}
@@ -295,8 +300,13 @@ impl UnusedParens {
295300
value: &ast::Pat,
296301
msg: &str) {
297302
if let ast::PatKind::Paren(_) = value.node {
298-
let pattern = pprust::pat_to_string(value);
299-
Self::remove_outer_parens(cx, value.span, &pattern, msg);
303+
let pattern_text = if let Ok(snippet) = cx.sess().source_map()
304+
.span_to_snippet(value.span) {
305+
snippet
306+
} else {
307+
pprust::pat_to_string(value)
308+
};
309+
Self::remove_outer_parens(cx, value.span, &pattern_text, msg);
300310
}
301311
}
302312

src/test/ui/lint/suggestions.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fn main() {
5656
while true {
5757
//~^ WARN denote infinite loops
5858
//~| HELP use `loop`
59-
let mut a = (1);
59+
let mut registry_no = (format!("NX-{}", 74205));
6060
//~^ WARN does not need to be mutable
6161
//~| HELP remove this `mut`
6262
//~| WARN unnecessary parentheses
@@ -72,6 +72,6 @@ fn main() {
7272
//~^ WARN this pattern is redundant
7373
//~| HELP remove this
7474
}
75-
println!("{} {}", a, b);
75+
println!("{} {}", registry_no, b);
7676
}
7777
}

src/test/ui/lint/suggestions.stderr

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
warning: unnecessary parentheses around assigned value
2-
--> $DIR/suggestions.rs:59:21
2+
--> $DIR/suggestions.rs:59:31
33
|
4-
LL | let mut a = (1);
5-
| ^^^ help: remove these parentheses
4+
LL | let mut registry_no = (format!("NX-{}", 74205));
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
66
|
77
note: lint level defined here
88
--> $DIR/suggestions.rs:13:21
@@ -21,8 +21,8 @@ LL | #[no_debug] // should suggest removal of deprecated attribute
2121
warning: variable does not need to be mutable
2222
--> $DIR/suggestions.rs:59:13
2323
|
24-
LL | let mut a = (1);
25-
| ----^
24+
LL | let mut registry_no = (format!("NX-{}", 74205));
25+
| ----^^^^^^^^^^^
2626
| |
2727
| help: remove this `mut`
2828
|

0 commit comments

Comments
 (0)