aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/ast.rs
diff options
context:
space:
mode:
authorRafael Ávila de Espíndola <[email protected]>2011-02-25 12:08:21 -0500
committerRafael Ávila de Espíndola <[email protected]>2011-02-25 12:08:21 -0500
commitf8f6f078c505dd0f20526e3ad86c360605fce109 (patch)
treed333e5b301e72337ac23e290ae98717b0ece568e /src/comp/front/ast.rs
parentDisable test that is failing on valgrind. (diff)
downloadrust-f8f6f078c505dd0f20526e3ad86c360605fce109.tar.xz
rust-f8f6f078c505dd0f20526e3ad86c360605fce109.zip
There are no native iterators (or at least they are not going to be supported
soon.).
Diffstat (limited to 'src/comp/front/ast.rs')
-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 f5c03bd7..9b995f9a 100644
--- a/src/comp/front/ast.rs
+++ b/src/comp/front/ast.rs
@@ -235,10 +235,10 @@ tag ty_ {
type arg = rec(mode mode, @ty ty, ident ident, def_id id);
type fn_decl = rec(effect effect,
- proto proto,
vec[arg] inputs,
@ty output);
type _fn = rec(fn_decl decl,
+ proto proto,
block body);