diff options
| author | Graydon Hoare <[email protected]> | 2010-11-29 12:29:57 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-11-29 12:29:57 -0800 |
| commit | 38846e39c4be0f12241ab0df2e94cbb366ae34ba (patch) | |
| tree | 78b01de1abc68687f5057619de868763b8daf07b /src/comp/front/ast.rs | |
| parent | Add mut field to typeck.ty. (diff) | |
| download | rust-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.rs | 1 |
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 { |