Skip to content

Commit a46af18

Browse files
committed
fix parentheses surrounding spacing issue in parser
1 parent c0447b4 commit a46af18

File tree

6 files changed

+52
-16
lines changed

6 files changed

+52
-16
lines changed

compiler/rustc_lint/src/unused.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -568,17 +568,15 @@ trait UnusedDelimLint {
568568
let sm = cx.sess().source_map();
569569
let lo_replace =
570570
if keep_space.0 &&
571-
let Ok(snip) = sm.span_to_snippet(lo.with_lo(lo.lo() - BytePos(1))) &&
572-
!snip.starts_with(" ") {
571+
let Ok(snip) = sm.span_to_prev_source(lo) && !snip.ends_with(" ") {
573572
" ".to_string()
574573
} else {
575574
"".to_string()
576575
};
577576

578577
let hi_replace =
579578
if keep_space.1 &&
580-
let Ok(snip) = sm.span_to_snippet(sm.next_point(hi)) &&
581-
!snip.starts_with(" ") {
579+
let Ok(snip) = sm.span_to_next_source(hi) && !snip.starts_with(" ") {
582580
" ".to_string()
583581
} else {
584582
"".to_string()

compiler/rustc_parse/src/errors.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1122,10 +1122,12 @@ pub(crate) struct ParenthesesInForHead {
11221122
#[derive(Subdiagnostic)]
11231123
#[multipart_suggestion(suggestion, applicability = "machine-applicable")]
11241124
pub(crate) struct ParenthesesInForHeadSugg {
1125-
#[suggestion_part(code = "")]
1125+
#[suggestion_part(code = "{left_snippet}")]
11261126
pub left: Span,
1127-
#[suggestion_part(code = "")]
1127+
pub left_snippet: String,
1128+
#[suggestion_part(code = "{right_snippet}")]
11281129
pub right: Span,
1130+
pub right_snippet: String,
11291131
}
11301132

11311133
#[derive(Diagnostic)]

compiler/rustc_parse/src/parser/diagnostics.rs

+19-5
Original file line numberDiff line numberDiff line change
@@ -1641,15 +1641,29 @@ impl<'a> Parser<'a> {
16411641
(token::CloseDelim(Delimiter::Parenthesis), Some(begin_par_sp)) => {
16421642
self.bump();
16431643

1644+
let sm = self.sess.source_map();
1645+
let left = begin_par_sp;
1646+
let right = self.prev_token.span;
1647+
let left_snippet = if let Ok(snip) = sm.span_to_prev_source(left) &&
1648+
!snip.ends_with(" ") {
1649+
" ".to_string()
1650+
} else {
1651+
"".to_string()
1652+
};
1653+
1654+
let right_snippet = if let Ok(snip) = sm.span_to_next_source(right) &&
1655+
!snip.starts_with(" ") {
1656+
" ".to_string()
1657+
} else {
1658+
"".to_string()
1659+
};
1660+
16441661
self.sess.emit_err(ParenthesesInForHead {
1645-
span: vec![begin_par_sp, self.prev_token.span],
1662+
span: vec![left, right],
16461663
// With e.g. `for (x) in y)` this would replace `(x) in y)`
16471664
// with `x) in y)` which is syntactically invalid.
16481665
// However, this is prevented before we get here.
1649-
sugg: ParenthesesInForHeadSugg {
1650-
left: begin_par_sp,
1651-
right: self.prev_token.span,
1652-
},
1666+
sugg: ParenthesesInForHeadSugg { left, right, left_snippet, right_snippet },
16531667
});
16541668

16551669
// Unwrap `(pat)` into `pat` to avoid the `unused_parens` lint.

src/test/ui/lint/issue-103435-extra-parentheses.fixed

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ fn main() {
1111
if 2 == 1 {}
1212
//~^ ERROR unnecessary parentheses around `if` condition
1313

14-
// FIXME, auto recover from this one?
15-
// for(_x in 1..10) {}
14+
// reported by parser
15+
for _x in 1..10 {}
16+
//~^ ERROR expected one of
17+
//~| ERROR unexpected parentheses surrounding
1618
}

src/test/ui/lint/issue-103435-extra-parentheses.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ fn main() {
1111
if(2 == 1){}
1212
//~^ ERROR unnecessary parentheses around `if` condition
1313

14-
// FIXME, auto recover from this one?
15-
// for(_x in 1..10) {}
14+
// reported by parser
15+
for(_x in 1..10){}
16+
//~^ ERROR expected one of
17+
//~| ERROR unexpected parentheses surrounding
1618
}

src/test/ui/lint/issue-103435-extra-parentheses.stderr

+19-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
error: expected one of `)`, `,`, `@`, or `|`, found keyword `in`
2+
--> $DIR/issue-103435-extra-parentheses.rs:15:12
3+
|
4+
LL | for(_x in 1..10){}
5+
| ^^ expected one of `)`, `,`, `@`, or `|`
6+
7+
error: unexpected parentheses surrounding `for` loop head
8+
--> $DIR/issue-103435-extra-parentheses.rs:15:8
9+
|
10+
LL | for(_x in 1..10){}
11+
| ^ ^
12+
|
13+
help: remove parentheses in `for` loop
14+
|
15+
LL - for(_x in 1..10){}
16+
LL + for _x in 1..10 {}
17+
|
18+
119
error: unnecessary parentheses around pattern
220
--> $DIR/issue-103435-extra-parentheses.rs:5:11
321
|
@@ -39,5 +57,5 @@ LL - if(2 == 1){}
3957
LL + if 2 == 1 {}
4058
|
4159

42-
error: aborting due to 3 previous errors
60+
error: aborting due to 5 previous errors
4361

0 commit comments

Comments
 (0)