File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ fn rewrite_match_arm(
223
223
) -> Option < String > {
224
224
let ( missing_span, attrs_str) = if !arm. attrs . is_empty ( ) {
225
225
if contains_skip ( & arm. attrs ) {
226
- let ( _, body) = flatten_arm_body ( context, & arm. body , None ) ;
226
+ let ( _, body) = flatten_arm_body ( context, arm. body . as_deref ( ) ? , None ) ;
227
227
// `arm.span()` does not include trailing comma, add it manually.
228
228
return Some ( format ! (
229
229
"{}{}" ,
@@ -246,7 +246,7 @@ fn rewrite_match_arm(
246
246
} ;
247
247
248
248
// Patterns
249
- let pat_shape = match & arm. body . kind {
249
+ let pat_shape = match & arm. body . as_ref ( ) ? . kind {
250
250
ast:: ExprKind :: Block ( _, Some ( label) ) => {
251
251
// Some block with a label ` => 'label: {`
252
252
// 7 = ` => : {`
@@ -280,10 +280,10 @@ fn rewrite_match_arm(
280
280
false ,
281
281
) ?;
282
282
283
- let arrow_span = mk_sp ( arm. pat . span . hi ( ) , arm. body . span ( ) . lo ( ) ) ;
283
+ let arrow_span = mk_sp ( arm. pat . span . hi ( ) , arm. body . as_ref ( ) ? . span ( ) . lo ( ) ) ;
284
284
rewrite_match_body (
285
285
context,
286
- & arm. body ,
286
+ arm. body . as_ref ( ) ? ,
287
287
& lhs_str,
288
288
shape,
289
289
guard_str. contains ( '\n' ) ,
Original file line number Diff line number Diff line change @@ -97,7 +97,12 @@ impl Spanned for ast::Arm {
97
97
} else {
98
98
self . attrs [ 0 ] . span . lo ( )
99
99
} ;
100
- span_with_attrs_lo_hi ! ( self , lo, self . body. span. hi( ) )
100
+ let hi = if let Some ( body) = & self . body {
101
+ body. span . hi ( )
102
+ } else {
103
+ self . pat . span . hi ( )
104
+ } ;
105
+ span_with_attrs_lo_hi ! ( self , lo, hi)
101
106
}
102
107
}
103
108
You can’t perform that action at this time.
0 commit comments