Auto merge of #30460 - Ms2ger:BindingMode, r=alexcrichton
This commit is contained in:
commit
709d00a231
9 changed files with 26 additions and 27 deletions
|
@ -10,7 +10,6 @@
|
|||
|
||||
// The Rust abstract syntax tree.
|
||||
|
||||
pub use self::BindingMode::*;
|
||||
pub use self::BinOp_::*;
|
||||
pub use self::BlockCheckMode::*;
|
||||
pub use self::CaptureClause::*;
|
||||
|
@ -574,8 +573,8 @@ pub struct FieldPat {
|
|||
|
||||
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug, Copy)]
|
||||
pub enum BindingMode {
|
||||
BindByRef(Mutability),
|
||||
BindByValue(Mutability),
|
||||
ByRef(Mutability),
|
||||
ByValue(Mutability),
|
||||
}
|
||||
|
||||
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)]
|
||||
|
@ -1655,7 +1654,7 @@ impl Arg {
|
|||
}),
|
||||
pat: P(Pat {
|
||||
id: DUMMY_NODE_ID,
|
||||
node: PatIdent(BindByValue(mutability), path, None),
|
||||
node: PatIdent(BindingMode::ByValue(mutability), path, None),
|
||||
span: span
|
||||
}),
|
||||
id: DUMMY_NODE_ID
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue