Skip to content

Commit 6078b96

Browse files
committed
Delegation implementation: step 1
1 parent 381ef81 commit 6078b96

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/items.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,9 @@ impl<'a> FmtVisitor<'a> {
728728
(Const(..), Const(..)) | (MacCall(..), MacCall(..)) => {
729729
a.ident.as_str().cmp(b.ident.as_str())
730730
}
731-
(Fn(..), Fn(..)) => a.span.lo().cmp(&b.span.lo()),
731+
(Fn(..), Fn(..)) | (Delegation(..), Delegation(..)) => {
732+
a.span.lo().cmp(&b.span.lo())
733+
}
732734
(Type(ty), _) if is_type(&ty.ty) => Ordering::Less,
733735
(_, Type(ty)) if is_type(&ty.ty) => Ordering::Greater,
734736
(Type(..), _) => Ordering::Less,
@@ -737,6 +739,8 @@ impl<'a> FmtVisitor<'a> {
737739
(_, Const(..)) => Ordering::Greater,
738740
(MacCall(..), _) => Ordering::Less,
739741
(_, MacCall(..)) => Ordering::Greater,
742+
(Delegation(..), _) => Ordering::Less,
743+
(_, Delegation(..)) => Ordering::Greater,
740744
});
741745
let mut prev_kind = None;
742746
for (buf, item) in buffer {

src/visitor.rs

+5
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,11 @@ impl<'b, 'a: 'b> FmtVisitor<'a> {
592592
);
593593
self.push_rewrite(item.span, rewrite);
594594
}
595+
ast::ItemKind::Delegation(..) => {
596+
// TODO: rewrite delegation items once syntax is established.
597+
// For now, leave the contents of the Span unformatted.
598+
self.push_rewrite(item.span, None)
599+
}
595600
};
596601
}
597602
self.skip_context = skip_context_saved;

0 commit comments

Comments
 (0)