diff options
| author | Patrick Walton <[email protected]> | 2010-10-11 18:41:45 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2010-10-11 18:42:10 -0700 |
| commit | 0415841504d691b6fa911d6b57a493db3601ffec (patch) | |
| tree | f259aed1d70a6fead14ba00c2e3d8d00558c4352 | |
| parent | Parse autos (diff) | |
| download | rust-0415841504d691b6fa911d6b57a493db3601ffec.tar.xz rust-0415841504d691b6fa911d6b57a493db3601ffec.zip | |
rustc: Add the tuple type to the AST
| -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 34df06ad..1425db61 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -117,6 +117,7 @@ tag ty_ { ty_char; ty_str; ty_box(@ty); + ty_tup(vec[tup(bool /* mutability */, @ty)]); ty_path(path, option[referent]); } |