Skip to content

Strip leading | in match arm patterns #2804

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 15 additions & 25 deletions src/matches.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl<'a> Spanned for ArmWrapper<'a> {

impl<'a> Rewrite for ArmWrapper<'a> {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
rewrite_match_arm(context, self.arm, shape, self.is_last, self.beginning_vert)
rewrite_match_arm(context, self.arm, shape, self.is_last)
}
}

Expand Down Expand Up @@ -236,7 +236,6 @@ fn rewrite_match_arm(
arm: &ast::Arm,
shape: Shape,
is_last: bool,
beginning_vert: Option<BytePos>,
) -> Option<String> {
let (missing_span, attrs_str) = if !arm.attrs.is_empty() {
if contains_skip(&arm.attrs) {
Expand All @@ -256,22 +255,18 @@ fn rewrite_match_arm(
} else {
(mk_sp(arm.span().lo(), arm.span().lo()), String::new())
};
let pats_str = rewrite_match_pattern(
context,
&ptr_vec_to_ref_vec(&arm.pats),
&arm.guard,
beginning_vert.is_some(),
shape,
).and_then(|pats_str| {
combine_strs_with_missing_comments(
context,
&attrs_str,
&pats_str,
missing_span,
shape,
false,
)
})?;
let pats_str =
rewrite_match_pattern(context, &ptr_vec_to_ref_vec(&arm.pats), &arm.guard, shape)
.and_then(|pats_str| {
combine_strs_with_missing_comments(
context,
&attrs_str,
&pats_str,
missing_span,
shape,
false,
)
})?;
rewrite_match_body(
context,
&arm.body,
Expand All @@ -286,22 +281,17 @@ fn rewrite_match_pattern(
context: &RewriteContext,
pats: &[&ast::Pat],
guard: &Option<ptr::P<ast::Expr>>,
has_beginning_vert: bool,
shape: Shape,
) -> Option<String> {
// Patterns
// 5 = ` => {`
// 2 = `| `
let pat_shape = shape
.sub_width(5)?
.offset_left(if has_beginning_vert { 2 } else { 0 })?;
let pat_shape = shape.sub_width(5)?;
let pats_str = rewrite_multiple_patterns(context, pats, pat_shape)?;
let beginning_vert = if has_beginning_vert { "| " } else { "" };

// Guard
let guard_str = rewrite_guard(context, guard, shape, trimmed_last_line_width(&pats_str))?;

Some(format!("{}{}{}", beginning_vert, pats_str, guard_str))
Some(format!("{}{}", pats_str, guard_str))
}

// (extend, body)
Expand Down
28 changes: 17 additions & 11 deletions tests/source/match.rs
Original file line number Diff line number Diff line change
Expand Up @@ -452,17 +452,6 @@ fn issue_2152() {
}
}

// #2462
// Preserve a `|` at the beginning of a match arm.
fn match_with_beginning_vert() {
let x = Foo::A;
match x {
| Foo::A
| Foo::B => println!("AB"),
| Foo::C => println!("C"),
}
}

// #2376
// Preserve block around expressions with condition.
fn issue_2376() {
Expand All @@ -485,3 +474,20 @@ fn issue_2376() {
}
}
}

// #2621
// Strip leading `|` in match arm patterns
fn issue_2621() {
let x = Foo::A;
match x {
Foo::A => println!("No vert single condition"),
Foo::B | Foo::C => println!("Center vert two conditions"),
| Foo::D => println!("Preceding vert single condition"),
| Foo::E
| Foo::F => println!("Preceding vert over two lines"),
Foo::G |
Foo::H => println!("Trailing vert over two lines"),
// Comment on its own line
| Foo::I => println!("With comment"), // Comment after line
}
}
25 changes: 15 additions & 10 deletions tests/target/match.rs
Original file line number Diff line number Diff line change
Expand Up @@ -481,16 +481,6 @@ fn issue_2152() {
}
}

// #2462
// Preserve a `|` at the beginning of a match arm.
fn match_with_beginning_vert() {
let x = Foo::A;
match x {
| Foo::A | Foo::B => println!("AB"),
| Foo::C => println!("C"),
}
}

// #2376
// Preserve block around expressions with condition.
fn issue_2376() {
Expand All @@ -513,3 +503,18 @@ fn issue_2376() {
}
}
}

// #2621
// Strip leading `|` in match arm patterns
fn issue_2621() {
let x = Foo::A;
match x {
Foo::A => println!("No vert single condition"),
Foo::B | Foo::C => println!("Center vert two conditions"),
Foo::D => println!("Preceding vert single condition"),
Foo::E | Foo::F => println!("Preceding vert over two lines"),
Foo::G | Foo::H => println!("Trailing vert over two lines"),
// Comment on its own line
Foo::I => println!("With comment"), // Comment after line
}
}