Skip to content

Commit a8e00b0

Browse files
committed
Only treat plain literal patterns as short
1 parent 1f81f90 commit a8e00b0

File tree

3 files changed

+32
-6
lines changed

3 files changed

+32
-6
lines changed

src/tools/rustfmt/src/patterns.rs

+14-6
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,20 @@ pub(crate) fn is_short_pattern(pat: &ast::Pat, pat_str: &str) -> bool {
3737
}
3838

3939
fn is_short_pattern_inner(pat: &ast::Pat) -> bool {
40-
match pat.kind {
41-
ast::PatKind::Rest
42-
| ast::PatKind::Never
43-
| ast::PatKind::Wild
44-
| ast::PatKind::Err(_)
45-
| ast::PatKind::Lit(_) => true,
40+
match &pat.kind {
41+
ast::PatKind::Rest | ast::PatKind::Never | ast::PatKind::Wild | ast::PatKind::Err(_) => {
42+
true
43+
}
44+
ast::PatKind::Lit(expr) => match &expr.kind {
45+
ast::ExprKind::Lit(_) => true,
46+
ast::ExprKind::Unary(ast::UnOp::Neg, expr) => match &expr.kind {
47+
ast::ExprKind::Lit(_) => true,
48+
_ => unreachable!(),
49+
},
50+
ast::ExprKind::ConstBlock(_) => false,
51+
ast::ExprKind::Path(..) => false,
52+
_ => unreachable!(),
53+
},
4654
ast::PatKind::Ident(_, _, ref pat) => pat.is_none(),
4755
ast::PatKind::Struct(..)
4856
| ast::PatKind::MacCall(..)

src/tools/rustfmt/tests/source/pattern.rs

+10
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,13 @@ fn issue3728() {
8888
| c;
8989
foo((1,));
9090
}
91+
92+
fn literals() {
93+
match 42 {
94+
const { 1 + 2 } | 4
95+
| 6 => {}
96+
10 | 11 | 12
97+
| 13 | 14 => {}
98+
_ => {}
99+
}
100+
}

src/tools/rustfmt/tests/target/pattern.rs

+8
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,11 @@ fn issue3728() {
9696
let foo = |(c,)| c;
9797
foo((1,));
9898
}
99+
100+
fn literals() {
101+
match 42 {
102+
const { 1 + 2 } | 4 | 6 => {}
103+
10 | 11 | 12 | 13 | 14 => {}
104+
_ => {}
105+
}
106+
}

0 commit comments

Comments
 (0)