Skip to content

Commit 7af33b3

Browse files
committed
Add pattern types to ast
1 parent 31a4eae commit 7af33b3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/types.rs

+5
Original file line numberDiff line numberDiff line change
@@ -867,6 +867,11 @@ impl Rewrite for ast::Ty {
867867
self.span,
868868
shape,
869869
),
870+
ast::TyKind::Pat(ref ty, ref pat) => {
871+
let ty = ty.rewrite(context, shape)?;
872+
let pat = pat.rewrite(context, shape)?;
873+
Some(format!("{ty} is {pat}"))
874+
}
870875
}
871876
}
872877
}

0 commit comments

Comments
 (0)