@@ -292,7 +292,7 @@ fn calc_unused_spans(
292
292
UnusedSpanResult :: Used
293
293
}
294
294
}
295
- ast:: UseTreeKind :: Nested { items : ref nested, .. } => {
295
+ ast:: UseTreeKind :: Nested { items : ref nested, span : tree_span } => {
296
296
if nested. is_empty ( ) {
297
297
return UnusedSpanResult :: Unused { spans : vec ! [ use_tree. span] , remove : full_span } ;
298
298
}
@@ -346,6 +346,23 @@ fn calc_unused_spans(
346
346
} else if used_childs == 0 {
347
347
UnusedSpanResult :: Unused { spans : unused_spans, remove : full_span }
348
348
} else {
349
+ // If there is only one remaining child that is used, the braces around the use
350
+ // tree are not needed anymore. In that case, we determine the span of the left
351
+ // brace and the right brace, and tell rustfix to remove them as well.
352
+ //
353
+ // This means that `use a::{B, C};` will be turned into `use a::B;` rather than
354
+ // `use a::{B};`, removing a rustfmt roundtrip.
355
+ if used_childs == 1 {
356
+ // Left brace, from the start of the nested group to the first item.
357
+ to_remove. push (
358
+ tree_span. shrink_to_lo ( ) . to ( nested. first ( ) . unwrap ( ) . 0 . span . shrink_to_lo ( ) ) ,
359
+ ) ;
360
+ // Right brace, from the end of the last item to the end of the nested group.
361
+ to_remove. push (
362
+ nested. last ( ) . unwrap ( ) . 0 . span . shrink_to_hi ( ) . to ( tree_span. shrink_to_hi ( ) ) ,
363
+ ) ;
364
+ }
365
+
349
366
UnusedSpanResult :: PartialUnused { spans : unused_spans, remove : to_remove }
350
367
}
351
368
}
0 commit comments