about summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2013-08-03 23:51:29 -0400
committerDaniel Micay <danielmicay@gmail.com>2013-08-04 00:39:48 -0400
commite7bb33aed889aebae1b141cdcc2aeeebab1724ee (patch)
tree528ad739b0c54febc5ee5aaa9baf42f89dca8112 /src/libsyntax/ast.rs
parent10089455287dcc3652b984ab4bfd6971e1b5f302 (diff)
downloadrust-e7bb33aed889aebae1b141cdcc2aeeebab1724ee.tar.gz
rust-e7bb33aed889aebae1b141cdcc2aeeebab1724ee.zip
rm obsolete `for` support from the compiler
Diffstat (limited to 'src/libsyntax/ast.rs')
-rw-r--r--src/libsyntax/ast.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index 11f2c7005bc..cf7a1e51798 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -472,11 +472,6 @@ pub enum expr_ {
     expr_loop(Block, Option<ident>),
     expr_match(@expr, ~[arm]),
     expr_fn_block(fn_decl, Block),
-    // Inner expr is always an expr_fn_block. We need the wrapping node to
-    // easily type this (a function returning nil on the inside but bool on
-    // the outside).
-    expr_loop_body(@expr),
-    // Like expr_loop_body but for 'do' blocks
     expr_do_body(@expr),
     expr_block(Block),