fix Comma in comment causes no formatting

This commit is contained in:
rchaser53 2019-04-29 21:38:38 +09:00
parent d3ec4609d6
commit 2c58b205d5
3 changed files with 14 additions and 1 deletions

View file

@ -612,7 +612,7 @@ pub fn extract_post_comment(
post_snippet[1..].trim_matches(white_space)
} else if post_snippet.starts_with(separator) {
post_snippet[separator.len()..].trim_matches(white_space)
} else if post_snippet.ends_with(',') {
} else if post_snippet.ends_with(',') && !post_snippet.trim().starts_with("//") {
post_snippet[..(post_snippet.len() - 1)].trim_matches(white_space)
} else {
post_snippet

View file

@ -0,0 +1,7 @@
fn foo(a: T) {
match a {
1 => {}
0 => {}
// _ => panic!("doesn't format!"),
}
}

View file

@ -0,0 +1,6 @@
fn foo(a: T) {
match a {
1 => {}
0 => {} // _ => panic!("doesn't format!"),
}
}