diff options
| author | Graydon Hoare <[email protected]> | 2010-10-14 18:13:34 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-10-14 18:14:09 -0700 |
| commit | fc2d4828e7d15e7c1203520e158d12c82915bf32 (patch) | |
| tree | 496dbb2b601ee9401a44a00367fdc2e1f383bae2 /src/comp/front | |
| parent | rustc: Parse field and vector indexing expressions (diff) | |
| download | rust-fc2d4828e7d15e7c1203520e158d12c82915bf32.tar.xz rust-fc2d4828e7d15e7c1203520e158d12c82915bf32.zip | |
Finish the fold drivers in fold.rs.
Diffstat (limited to 'src/comp/front')
| -rw-r--r-- | src/comp/front/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index 5af9fa8b..1d3646f4 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_]; |