Skip to content

Commit 9580747

Browse files
authored
Fix failure with => in comment after match => (#6092)
* Find arrow with find_last_uncommented * Add version gate for arrow finding fix
1 parent 73c8149 commit 9580747

File tree

5 files changed

+59
-2
lines changed

5 files changed

+59
-2
lines changed

src/matches.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use std::iter::repeat;
55
use rustc_ast::{ast, ptr};
66
use rustc_span::{BytePos, Span};
77

8-
use crate::comment::{combine_strs_with_missing_comments, rewrite_comment};
8+
use crate::comment::{combine_strs_with_missing_comments, rewrite_comment, FindUncommented};
99
use crate::config::lists::*;
1010
use crate::config::{Config, ControlBraceStyle, IndentStyle, MatchArmLeadingPipe, Version};
1111
use crate::expr::{
@@ -402,7 +402,11 @@ fn rewrite_match_body(
402402
let arrow_snippet = context.snippet(arrow_span).trim();
403403
// search for the arrow starting from the end of the snippet since there may be a match
404404
// expression within the guard
405-
let arrow_index = arrow_snippet.rfind("=>").unwrap();
405+
let arrow_index = if context.config.version() == Version::One {
406+
arrow_snippet.rfind("=>").unwrap()
407+
} else {
408+
arrow_snippet.find_last_uncommented("=>").unwrap()
409+
};
406410
// 2 = `=>`
407411
let comment_str = arrow_snippet[arrow_index + 2..].trim();
408412
if comment_str.is_empty() {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// rustfmt-version: Two
2+
fn main() {
3+
match a {
4+
_ =>
5+
// comment with =>
6+
{
7+
println!("A")
8+
}
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// rustfmt-version: Two
2+
fn main() {
3+
match a {
4+
_ => // comment with =>
5+
match b {
6+
// one goes to =>
7+
one => {
8+
println("1");
9+
}
10+
// two goes to =>
11+
two => { println("2"); }
12+
}
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// rustfmt-version: Two
2+
fn main() {
3+
match a {
4+
_ =>
5+
// comment with =>
6+
{
7+
println!("A")
8+
}
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// rustfmt-version: Two
2+
fn main() {
3+
match a {
4+
_ =>
5+
// comment with =>
6+
{
7+
match b {
8+
// one goes to =>
9+
one => {
10+
println("1");
11+
}
12+
// two goes to =>
13+
two => {
14+
println("2");
15+
}
16+
}
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)