Skip to content

Commit afa482e

Browse files
committed
store the span of the nested part of the use tree in the ast
1 parent 7af33b3 commit afa482e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/imports.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,9 @@ impl UseTree {
458458
version,
459459
});
460460
}
461-
UseTreeKind::Nested(ref list) => {
461+
UseTreeKind::Nested {
462+
items: ref list, ..
463+
} => {
462464
// Extract comments between nested use items.
463465
// This needs to be done before sorting use items.
464466
let items = itemize_list(

0 commit comments

Comments
 (0)