about summary refs log tree commit diff
path: root/src/comp/front
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2010-10-14 18:13:34 -0700
committerGraydon Hoare <graydon@mozilla.com>2010-10-14 18:14:09 -0700
commitfc2d4828e7d15e7c1203520e158d12c82915bf32 (patch)
tree496dbb2b601ee9401a44a00367fdc2e1f383bae2 /src/comp/front
parent5826a2e3de12c3cbbd2bf09f3a9c6bda3c99f456 (diff)
downloadrust-fc2d4828e7d15e7c1203520e158d12c82915bf32.tar.gz
rust-fc2d4828e7d15e7c1203520e158d12c82915bf32.zip
Finish the fold drivers in fold.rs.
Diffstat (limited to 'src/comp/front')
-rw-r--r--src/comp/front/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs
index 5af9fa8b1c7..1d3646f451d 100644
--- a/src/comp/front/ast.rs
+++ b/src/comp/front/ast.rs
@@ -77,7 +77,7 @@ tag stmt_ {
 type decl = spanned[decl_];
 tag decl_ {
     decl_local(ident, option[@ty], option[@expr]);
-    decl_item(name, @item);
+    decl_item(ident, @item);
 }
 
 type expr = spanned[expr_];