Skip to content

Commit 47788ff

Browse files
committed
remove braces when fixing a nested use tree into a single use
1 parent 7357c8a commit 47788ff

File tree

5 files changed

+104
-2
lines changed

5 files changed

+104
-2
lines changed

compiler/rustc_resolve/src/check_unused.rs

+18-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ fn calc_unused_spans(
292292
UnusedSpanResult::Used
293293
}
294294
}
295-
ast::UseTreeKind::Nested { items: ref nested, .. } => {
295+
ast::UseTreeKind::Nested { items: ref nested, span: tree_span } => {
296296
if nested.is_empty() {
297297
return UnusedSpanResult::Unused { spans: vec![use_tree.span], remove: full_span };
298298
}
@@ -346,6 +346,23 @@ fn calc_unused_spans(
346346
} else if used_childs == 0 {
347347
UnusedSpanResult::Unused { spans: unused_spans, remove: full_span }
348348
} 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+
349366
UnusedSpanResult::PartialUnused { spans: unused_spans, remove: to_remove }
350367
}
351368
}

tests/ui/lint/unnecessary-qualification/lint-unnecessary-qualification-issue-121331.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use std::ops::{
88
Coroutine,
9-
CoroutineState::{self},
9+
CoroutineState::self,
1010
//~^ ERROR unused import: `*`
1111
};
1212
use std::pin::Pin;
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
//@ run-rustfix
2+
//@ check-pass
3+
4+
#![warn(unused_imports)]
5+
6+
pub mod nested {
7+
pub struct A;
8+
pub struct B;
9+
pub struct C;
10+
pub struct D;
11+
pub mod even_more {
12+
pub struct E;
13+
pub struct F;
14+
pub struct G;
15+
}
16+
}
17+
18+
use nested::B;
19+
//~^ WARN unused import
20+
21+
use nested::even_more::F;
22+
//~^^^^^^^ WARN unused import
23+
24+
fn main() {
25+
let _ = (B, F);
26+
}
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
//@ run-rustfix
2+
//@ check-pass
3+
4+
#![warn(unused_imports)]
5+
6+
pub mod nested {
7+
pub struct A;
8+
pub struct B;
9+
pub struct C;
10+
pub struct D;
11+
pub mod even_more {
12+
pub struct E;
13+
pub struct F;
14+
pub struct G;
15+
}
16+
}
17+
18+
use nested::{A, B, C};
19+
//~^ WARN unused import
20+
21+
use nested::{
22+
D,
23+
even_more::{
24+
E,
25+
F,
26+
G,
27+
},
28+
};
29+
//~^^^^^^^ WARN unused import
30+
31+
fn main() {
32+
let _ = (B, F);
33+
}
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
warning: unused imports: `A`, `C`
2+
--> $DIR/unused-imports.rs:18:14
3+
|
4+
LL | use nested::{A, B, C};
5+
| ^ ^
6+
|
7+
note: the lint level is defined here
8+
--> $DIR/unused-imports.rs:4:9
9+
|
10+
LL | #![warn(unused_imports)]
11+
| ^^^^^^^^^^^^^^
12+
13+
warning: unused imports: `D`, `E`, `G`
14+
--> $DIR/unused-imports.rs:22:5
15+
|
16+
LL | D,
17+
| ^
18+
LL | even_more::{
19+
LL | E,
20+
| ^
21+
LL | F,
22+
LL | G,
23+
| ^
24+
25+
warning: 2 warnings emitted
26+

0 commit comments

Comments
 (0)