aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/ast.rs
diff options
context:
space:
mode:
authorPatrick Walton <[email protected]>2010-10-13 10:55:20 -0700
committerPatrick Walton <[email protected]>2010-10-13 10:55:20 -0700
commitd50d48152998ca474329afd3c7cbf9bed29a6a4f (patch)
treead84e9736a84e561add95dc9ff2ead543d1da2ae /src/comp/front/ast.rs
parentFirst stab at a Vim syntax highlighter for Rust (diff)
downloadrust-d50d48152998ca474329afd3c7cbf9bed29a6a4f.tar.xz
rust-d50d48152998ca474329afd3c7cbf9bed29a6a4f.zip
rustc: Parse vector types
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 a7ef4e65..aa4ed1e7 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_vec(@ty);
ty_tup(vec[tup(bool /* mutability */, @ty)]);
ty_path(path, option[referent]);
}