diff options
Diffstat (limited to 'src/comp/front')
| -rw-r--r-- | src/comp/front/ast.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index edc9c4a2..d768f935 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -278,12 +278,12 @@ tag ty_ { ty_str; ty_box(@ty); ty_vec(@ty); + ty_port(@ty); + ty_chan(@ty); ty_tup(vec[@ty]); ty_rec(vec[ty_field]); ty_fn(proto, vec[ty_arg], @ty); // TODO: effect ty_obj(vec[ty_method]); - ty_chan(@ty); - ty_port(@ty); ty_path(path, option.t[def]); ty_mutable(@ty); ty_type; |