@@ -1289,7 +1289,7 @@ impl Expr {
1289
1289
ExprKind :: Binary ( op, ..) => ExprPrecedence :: Binary ( op. node ) ,
1290
1290
ExprKind :: Unary ( ..) => ExprPrecedence :: Unary ,
1291
1291
ExprKind :: Lit ( _) | ExprKind :: IncludedBytes ( ..) => ExprPrecedence :: Lit ,
1292
- ExprKind :: Type ( .. ) | ExprKind :: Cast ( ..) => ExprPrecedence :: Cast ,
1292
+ ExprKind :: Cast ( ..) => ExprPrecedence :: Cast ,
1293
1293
ExprKind :: Let ( ..) => ExprPrecedence :: Let ,
1294
1294
ExprKind :: If ( ..) => ExprPrecedence :: If ,
1295
1295
ExprKind :: While ( ..) => ExprPrecedence :: While ,
@@ -1313,17 +1313,18 @@ impl Expr {
1313
1313
ExprKind :: Break ( ..) => ExprPrecedence :: Break ,
1314
1314
ExprKind :: Continue ( ..) => ExprPrecedence :: Continue ,
1315
1315
ExprKind :: Ret ( ..) => ExprPrecedence :: Ret ,
1316
- ExprKind :: InlineAsm ( ..) => ExprPrecedence :: InlineAsm ,
1317
- ExprKind :: OffsetOf ( ..) => ExprPrecedence :: OffsetOf ,
1318
- ExprKind :: MacCall ( ..) => ExprPrecedence :: Mac ,
1319
1316
ExprKind :: Struct ( ..) => ExprPrecedence :: Struct ,
1320
1317
ExprKind :: Repeat ( ..) => ExprPrecedence :: Repeat ,
1321
1318
ExprKind :: Paren ( ..) => ExprPrecedence :: Paren ,
1322
1319
ExprKind :: Try ( ..) => ExprPrecedence :: Try ,
1323
1320
ExprKind :: Yield ( ..) => ExprPrecedence :: Yield ,
1324
1321
ExprKind :: Yeet ( ..) => ExprPrecedence :: Yeet ,
1325
- ExprKind :: FormatArgs ( ..) => ExprPrecedence :: FormatArgs ,
1326
1322
ExprKind :: Become ( ..) => ExprPrecedence :: Become ,
1323
+ ExprKind :: InlineAsm ( ..)
1324
+ | ExprKind :: Type ( ..)
1325
+ | ExprKind :: OffsetOf ( ..)
1326
+ | ExprKind :: FormatArgs ( ..)
1327
+ | ExprKind :: MacCall ( ..) => ExprPrecedence :: Mac ,
1327
1328
ExprKind :: Err ( _) | ExprKind :: Dummy => ExprPrecedence :: Err ,
1328
1329
}
1329
1330
}
0 commit comments