aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/ast.rs
diff options
context:
space:
mode:
authorBrian Anderson <[email protected]>2011-01-30 17:18:19 -0500
committerGraydon Hoare <[email protected]>2011-02-10 12:12:10 -0800
commit378c0087ca7572cd17726c704fe04d57bf4687af (patch)
treec158d769375cee5b19b4be83d314c46acab28b12 /src/comp/front/ast.rs
parentRevert EI_OSABI ELF header field back to 0 for Linux (diff)
downloadrust-378c0087ca7572cd17726c704fe04d57bf4687af.tar.xz
rust-378c0087ca7572cd17726c704fe04d57bf4687af.zip
Parse 'be' statement. Pass tailcall tests. No actual tailcalls yet.
Diffstat (limited to 'src/comp/front/ast.rs')
-rw-r--r--src/comp/front/ast.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs
index 5f315e58..756a7ad1 100644
--- a/src/comp/front/ast.rs
+++ b/src/comp/front/ast.rs
@@ -116,6 +116,7 @@ type stmt = spanned[stmt_];
tag stmt_ {
stmt_decl(@decl);
stmt_ret(option.t[@expr]);
+ stmt_be(@expr);
stmt_log(@expr);
stmt_check_expr(@expr);
stmt_fail;