We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 381ef81 commit 6078b96Copy full SHA for 6078b96
src/items.rs
@@ -728,7 +728,9 @@ impl<'a> FmtVisitor<'a> {
728
(Const(..), Const(..)) | (MacCall(..), MacCall(..)) => {
729
a.ident.as_str().cmp(b.ident.as_str())
730
}
731
- (Fn(..), Fn(..)) => a.span.lo().cmp(&b.span.lo()),
+ (Fn(..), Fn(..)) | (Delegation(..), Delegation(..)) => {
732
+ a.span.lo().cmp(&b.span.lo())
733
+ }
734
(Type(ty), _) if is_type(&ty.ty) => Ordering::Less,
735
(_, Type(ty)) if is_type(&ty.ty) => Ordering::Greater,
736
(Type(..), _) => Ordering::Less,
@@ -737,6 +739,8 @@ impl<'a> FmtVisitor<'a> {
737
739
(_, Const(..)) => Ordering::Greater,
738
740
(MacCall(..), _) => Ordering::Less,
741
(_, MacCall(..)) => Ordering::Greater,
742
+ (Delegation(..), _) => Ordering::Less,
743
+ (_, Delegation(..)) => Ordering::Greater,
744
});
745
let mut prev_kind = None;
746
for (buf, item) in buffer {
src/visitor.rs
@@ -592,6 +592,11 @@ impl<'b, 'a: 'b> FmtVisitor<'a> {
592
);
593
self.push_rewrite(item.span, rewrite);
594
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
600
};
601
602
self.skip_context = skip_context_saved;
0 commit comments