aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/ast.rs
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-11-29 12:29:57 -0800
committerGraydon Hoare <[email protected]>2010-11-29 12:29:57 -0800
commit38846e39c4be0f12241ab0df2e94cbb366ae34ba (patch)
tree78b01de1abc68687f5057619de868763b8daf07b /src/comp/front/ast.rs
parentAdd mut field to typeck.ty. (diff)
downloadrust-38846e39c4be0f12241ab0df2e94cbb366ae34ba.tar.xz
rust-38846e39c4be0f12241ab0df2e94cbb366ae34ba.zip
Add ast.ty_mutable.
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 3c2af3c8..a177f301 100644
--- a/src/comp/front/ast.rs
+++ b/src/comp/front/ast.rs
@@ -150,6 +150,7 @@ tag ty_ {
ty_tup(vec[tup(bool /* mutability */, @ty)]);
ty_fn(vec[rec(mode mode, @ty ty)], @ty); // TODO: effect
ty_path(path, option.t[def]);
+ ty_mutable(@ty);
}
tag mode {