1
Fork 0

Remove be keyword.

Closes #2227.
This commit is contained in:
Lindsey Kuper 2012-05-14 16:55:01 -07:00
parent 452fc46ffc
commit b8880e3254
27 changed files with 40 additions and 104 deletions

View file

@ -825,10 +825,6 @@ fn parse_bottom_expr(p: parser) -> pexpr {
} else if eat_keyword(p, "cont") {
ex = expr_cont;
hi = p.span.hi;
} else if eat_keyword(p, "be") {
let e = parse_expr(p);
hi = e.span.hi;
ex = expr_be(e);
} else if eat_keyword(p, "copy") {
let e = parse_expr(p);
ex = expr_copy(e);