libsyntax: Remove move as a keyword.
This commit is contained in:
parent
178882c98f
commit
3a19eef496
2 changed files with 2 additions and 2 deletions
|
@ -712,7 +712,7 @@ pub impl Parser {
|
||||||
fn parse_capture_item_or(parse_arg_fn: fn(Parser) -> arg_or_capture_item)
|
fn parse_capture_item_or(parse_arg_fn: fn(Parser) -> arg_or_capture_item)
|
||||||
-> arg_or_capture_item
|
-> arg_or_capture_item
|
||||||
{
|
{
|
||||||
if self.eat_keyword(~"move") || self.eat_keyword(~"copy") {
|
if self.eat_keyword(~"copy") {
|
||||||
// XXX outdated syntax now that moves-based-on-type has gone in
|
// XXX outdated syntax now that moves-based-on-type has gone in
|
||||||
self.parse_ident();
|
self.parse_ident();
|
||||||
either::Right(())
|
either::Right(())
|
||||||
|
|
|
@ -493,7 +493,7 @@ pub fn strict_keyword_table() -> HashMap<~str, ()> {
|
||||||
~"false", ~"fn", ~"for",
|
~"false", ~"fn", ~"for",
|
||||||
~"if", ~"impl",
|
~"if", ~"impl",
|
||||||
~"let", ~"log", ~"loop",
|
~"let", ~"log", ~"loop",
|
||||||
~"match", ~"mod", ~"move", ~"mut",
|
~"match", ~"mod", ~"mut",
|
||||||
~"once",
|
~"once",
|
||||||
~"priv", ~"pub", ~"pure",
|
~"priv", ~"pub", ~"pure",
|
||||||
~"ref", ~"return",
|
~"ref", ~"return",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue