Skip to content

Commit 05a2db7

Browse files
committed
delegation: Implement list delegation
```rust reuse prefix::{a, b, c} ```
1 parent 2c70167 commit 05a2db7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/items.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -739,8 +739,8 @@ impl<'a> FmtVisitor<'a> {
739739
(_, Const(..)) => Ordering::Greater,
740740
(MacCall(..), _) => Ordering::Less,
741741
(_, MacCall(..)) => Ordering::Greater,
742-
(Delegation(..), _) => Ordering::Less,
743-
(_, Delegation(..)) => Ordering::Greater,
742+
(Delegation(..), _) | (DelegationMac(..), _) => Ordering::Less,
743+
(_, Delegation(..)) | (_, DelegationMac(..)) => Ordering::Greater,
744744
});
745745
let mut prev_kind = None;
746746
for (buf, item) in buffer {

src/visitor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ impl<'b, 'a: 'b> FmtVisitor<'a> {
586586
);
587587
self.push_rewrite(item.span, rewrite);
588588
}
589-
ast::ItemKind::Delegation(..) => {
589+
ast::ItemKind::Delegation(..) | ast::ItemKind::DelegationMac(..) => {
590590
// TODO: rewrite delegation items once syntax is established.
591591
// For now, leave the contents of the Span unformatted.
592592
self.push_rewrite(item.span, None)

0 commit comments

Comments
 (0)