diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-12-07 19:34:57 -0800 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-12-07 19:34:57 -0800 |
| commit | 98fdcb0b9d8b66a5feef1e45c06aeec93919d254 (patch) | |
| tree | d1d01fe8cf77c4be5a2331b606a2de7774e380a4 /src/libsyntax/parse/parser.rs | |
| parent | 184f5102b37c9a52342382fe9e88144a62cd9782 (diff) | |
| download | rust-98fdcb0b9d8b66a5feef1e45c06aeec93919d254.tar.gz rust-98fdcb0b9d8b66a5feef1e45c06aeec93919d254.zip | |
librustc: De-mode pattern bindings. r=nmatsakis
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 8e354f7017d..1bd3f970573 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -23,7 +23,7 @@ use obsolete::{ ObsoleteModeInFnType, ObsoleteMoveInit, ObsoleteBinaryMove, }; use ast::{_mod, add, arg, arm, attribute, - bind_by_ref, bind_by_implicit_ref, bind_by_value, bind_by_move, + bind_by_ref, bind_infer, bind_by_value, bind_by_move, bitand, bitor, bitxor, blk, blk_check_mode, box, by_copy, by_move, by_ref, by_val, capture_clause, capture_item, class_immutable, class_mutable, @@ -1925,9 +1925,7 @@ impl Parser { } else { subpat = @{ id: self.get_id(), - node: pat_ident(bind_by_implicit_ref, - fieldpath, - None), + node: pat_ident(bind_infer, fieldpath, None), span: self.last_span }; } @@ -2054,9 +2052,7 @@ impl Parser { } else if self.eat_keyword(~"move") { binding_mode = bind_by_move; } else if refutable { - // XXX: Should be bind_by_value, but that's not - // backward compatible. - binding_mode = bind_by_implicit_ref; + binding_mode = bind_infer; } else { binding_mode = bind_by_value; } |
