@@ -3,7 +3,7 @@ use std::cmp::min;
3
3
4
4
use itertools:: Itertools ;
5
5
use rustc_ast:: token:: { Delimiter , Lit , LitKind } ;
6
- use rustc_ast:: { ast, ptr, token, ForLoopKind } ;
6
+ use rustc_ast:: { ast, MatchKind , ptr, token, ForLoopKind } ;
7
7
use rustc_span:: { BytePos , Span } ;
8
8
9
9
use crate :: chains:: rewrite_chain;
@@ -170,8 +170,8 @@ pub(crate) fn format_expr(
170
170
}
171
171
}
172
172
}
173
- ast:: ExprKind :: Match ( ref cond, ref arms) => {
174
- rewrite_match ( context, cond, arms, shape, expr. span , & expr. attrs )
173
+ ast:: ExprKind :: Match ( ref cond, ref arms, kind ) => {
174
+ rewrite_match ( context, cond, arms, shape, expr. span , & expr. attrs , kind )
175
175
}
176
176
ast:: ExprKind :: Path ( ref qself, ref path) => {
177
177
rewrite_path ( context, PathContext :: Expr , qself, path, shape)
@@ -625,7 +625,7 @@ pub(crate) fn rewrite_cond(
625
625
shape : Shape ,
626
626
) -> Option < String > {
627
627
match expr. kind {
628
- ast:: ExprKind :: Match ( ref cond, _) => {
628
+ ast:: ExprKind :: Match ( ref cond, _, MatchKind :: Prefix ) => {
629
629
// `match `cond` {`
630
630
let cond_shape = match context. config . indent_style ( ) {
631
631
IndentStyle :: Visual => shape. shrink_left ( 6 ) . and_then ( |s| s. sub_width ( 2 ) ) ?,
0 commit comments