@@ -31,18 +31,31 @@ use crate::utils::{format_mutability, mk_sp, mk_sp_lo_plus_one, rewrite_ident};
31
31
/// - `[small, ntp]`
32
32
/// - unary tuple constructor `([small, ntp])`
33
33
/// - `&[small]`
34
- pub ( crate ) fn is_short_pattern ( pat : & ast:: Pat , pat_str : & str ) -> bool {
34
+ pub ( crate ) fn is_short_pattern (
35
+ context : & RewriteContext < ' _ > ,
36
+ pat : & ast:: Pat ,
37
+ pat_str : & str ,
38
+ ) -> bool {
35
39
// We also require that the pattern is reasonably 'small' with its literal width.
36
- pat_str. len ( ) <= 20 && !pat_str. contains ( '\n' ) && is_short_pattern_inner ( pat)
40
+ pat_str. len ( ) <= 20 && !pat_str. contains ( '\n' ) && is_short_pattern_inner ( context , pat)
37
41
}
38
42
39
- 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 :: Expr ( _) => true ,
43
+ fn is_short_pattern_inner ( context : & RewriteContext < ' _ > , pat : & ast:: Pat ) -> bool {
44
+ match & pat. kind {
45
+ ast:: PatKind :: Rest | ast:: PatKind :: Never | ast:: PatKind :: Wild | ast:: PatKind :: Err ( _) => {
46
+ true
47
+ }
48
+ ast:: PatKind :: Expr ( expr) => match & expr. kind {
49
+ ast:: ExprKind :: Lit ( _) => true ,
50
+ ast:: ExprKind :: Unary ( ast:: UnOp :: Neg , expr) => match & expr. kind {
51
+ ast:: ExprKind :: Lit ( _) => true ,
52
+ _ => unreachable ! ( ) ,
53
+ } ,
54
+ ast:: ExprKind :: ConstBlock ( _) | ast:: ExprKind :: Path ( ..) => {
55
+ context. config . style_edition ( ) <= StyleEdition :: Edition2024
56
+ }
57
+ _ => unreachable ! ( ) ,
58
+ } ,
46
59
ast:: PatKind :: Ident ( _, _, ref pat) => pat. is_none ( ) ,
47
60
ast:: PatKind :: Struct ( ..)
48
61
| ast:: PatKind :: MacCall ( ..)
@@ -57,8 +70,8 @@ fn is_short_pattern_inner(pat: &ast::Pat) -> bool {
57
70
ast:: PatKind :: Box ( ref p)
58
71
| PatKind :: Deref ( ref p)
59
72
| ast:: PatKind :: Ref ( ref p, _)
60
- | ast:: PatKind :: Paren ( ref p) => is_short_pattern_inner ( & * p) ,
61
- PatKind :: Or ( ref pats) => pats. iter ( ) . all ( |p| is_short_pattern_inner ( p) ) ,
73
+ | ast:: PatKind :: Paren ( ref p) => is_short_pattern_inner ( context , & * p) ,
74
+ PatKind :: Or ( ref pats) => pats. iter ( ) . all ( |p| is_short_pattern_inner ( context , p) ) ,
62
75
}
63
76
}
64
77
@@ -96,7 +109,7 @@ impl Rewrite for Pat {
96
109
let use_mixed_layout = pats
97
110
. iter ( )
98
111
. zip ( pat_strs. iter ( ) )
99
- . all ( |( pat, pat_str) | is_short_pattern ( pat, pat_str) ) ;
112
+ . all ( |( pat, pat_str) | is_short_pattern ( context , pat, pat_str) ) ;
100
113
let items: Vec < _ > = pat_strs. into_iter ( ) . map ( ListItem :: from_str) . collect ( ) ;
101
114
let tactic = if use_mixed_layout {
102
115
DefinitiveListTactic :: Mixed
0 commit comments