diff options
| author | Graydon Hoare <[email protected]> | 2011-02-01 14:56:21 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-02-01 14:56:21 -0800 |
| commit | 8ef22972dbe50b2e05c8983769a638fd5b6a23b5 (patch) | |
| tree | f9a725868e83ecfddf01ab08ede4840ea9790539 /src/comp/front | |
| parent | More work on derived tydescs. Can compile simple tests with generic objects. (diff) | |
| download | rust-8ef22972dbe50b2e05c8983769a638fd5b6a23b5.tar.xz rust-8ef22972dbe50b2e05c8983769a638fd5b6a23b5.zip | |
Add ty_type.
Diffstat (limited to 'src/comp/front')
| -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 10bcd5c4..9fddb66f 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -197,6 +197,7 @@ tag ty_ { ty_obj(vec[ty_method]); ty_path(path, option.t[def]); ty_mutable(@ty); + ty_type; } type arg = rec(mode mode, @ty ty, ident ident, def_id id); |