Reserve do as a keyword

Resolves issue #12157. `do` is hereby reinstated as a keyword; no syntax is
associated with it though. Along the way, a unit test had to be adapted, since
it was using `do` as a method identifier.

Breaking changes:

- Any code using `do` as an identifier will no longer work.
This commit is contained in:
Eduard Bopp 2014-02-11 00:19:27 +01:00
parent cf9164f94c
commit a2fab457dc
3 changed files with 17 additions and 3 deletions

View File

@ -492,6 +492,7 @@ declare_special_idents_and_keywords! {
(53, Typeof, "typeof");
(54, Unsized, "unsized");
(55, Yield, "yield");
(56, Do, "do");
}
}

View File

@ -0,0 +1,13 @@
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
fn main() {
let do = "bar"; //~ error: ident
}

View File

@ -23,7 +23,7 @@ impl Drop for Temporary {
}
impl Temporary {
fn do(&self) -> bool {true}
fn do_stuff(&self) -> bool {true}
}
fn borrow() -> ~Temporary { ~Temporary }
@ -35,7 +35,7 @@ pub fn main() {
// This loop's condition
// should call `Temporary`'s
// `drop` 6 times.
while borrow().do() {
while borrow().do_stuff() {
i += 1;
if i > 5 {
break;
@ -44,7 +44,7 @@ pub fn main() {
// This if condition should
// call it 1 time
if borrow().do() {
if borrow().do_stuff() {
unsafe { assert_eq!(DROPPED, 7) }
}
}