Rename BindingAnnotation
to BindingMode
This commit is contained in:
parent
a568985c4f
commit
932f3ab762
@ -1,6 +1,4 @@
|
|||||||
use rustc_ast::ast::{
|
use rustc_ast::ast::{self, BindingMode, ByRef, Pat, PatField, PatKind, RangeEnd, RangeSyntax};
|
||||||
self, BindingAnnotation, ByRef, Pat, PatField, PatKind, RangeEnd, RangeSyntax,
|
|
||||||
};
|
|
||||||
use rustc_ast::ptr;
|
use rustc_ast::ptr;
|
||||||
use rustc_span::{BytePos, Span};
|
use rustc_span::{BytePos, Span};
|
||||||
|
|
||||||
@ -106,7 +104,7 @@ fn rewrite(&self, context: &RewriteContext<'_>, shape: Shape) -> Option<String>
|
|||||||
write_list(&items, &fmt)
|
write_list(&items, &fmt)
|
||||||
}
|
}
|
||||||
PatKind::Box(ref pat) => rewrite_unary_prefix(context, "box ", &**pat, shape),
|
PatKind::Box(ref pat) => rewrite_unary_prefix(context, "box ", &**pat, shape),
|
||||||
PatKind::Ident(BindingAnnotation(by_ref, mutability), ident, ref sub_pat) => {
|
PatKind::Ident(BindingMode(by_ref, mutability), ident, ref sub_pat) => {
|
||||||
let mut_prefix = format_mutability(mutability).trim();
|
let mut_prefix = format_mutability(mutability).trim();
|
||||||
|
|
||||||
let (ref_kw, mut_infix) = match by_ref {
|
let (ref_kw, mut_infix) = match by_ref {
|
||||||
|
Loading…
Reference in New Issue
Block a user