Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 932f3ab

Browse files
committedApr 17, 2024
Rename BindingAnnotation to BindingMode
1 parent a568985 commit 932f3ab

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎src/patterns.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
use rustc_ast::ast::{
2-
self, BindingAnnotation, ByRef, Pat, PatField, PatKind, RangeEnd, RangeSyntax,
3-
};
1+
use rustc_ast::ast::{self, BindingMode, ByRef, Pat, PatField, PatKind, RangeEnd, RangeSyntax};
42
use rustc_ast::ptr;
53
use rustc_span::{BytePos, Span};
64

@@ -106,7 +104,7 @@ impl Rewrite for Pat {
106104
write_list(&items, &fmt)
107105
}
108106
PatKind::Box(ref pat) => rewrite_unary_prefix(context, "box ", &**pat, shape),
109-
PatKind::Ident(BindingAnnotation(by_ref, mutability), ident, ref sub_pat) => {
107+
PatKind::Ident(BindingMode(by_ref, mutability), ident, ref sub_pat) => {
110108
let mut_prefix = format_mutability(mutability).trim();
111109

112110
let (ref_kw, mut_infix) = match by_ref {

0 commit comments

Comments
 (0)