aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/ast.rs
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2011-03-02 13:50:42 -0800
committerGraydon Hoare <[email protected]>2011-03-02 13:50:42 -0800
commit9e4943c9229e15fa11069eeb2b20060994f9ac0f (patch)
treeecd8c204e4026e865ab3576e3b87bd334aa00a3d /src/comp/front/ast.rs
parentComment-out TRACK_ALLOCATIONS again. Leave a note about it. (diff)
downloadrust-9e4943c9229e15fa11069eeb2b20060994f9ac0f.tar.xz
rust-9e4943c9229e15fa11069eeb2b20060994f9ac0f.zip
Parse, add to AST, and otherwise ignore 'export' view items. Need to add support to resolve.
Diffstat (limited to 'src/comp/front/ast.rs')
-rw-r--r--src/comp/front/ast.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs
index 46f57168..474dc4aa 100644
--- a/src/comp/front/ast.rs
+++ b/src/comp/front/ast.rs
@@ -279,6 +279,7 @@ type view_item = spanned[view_item_];
tag view_item_ {
view_item_use(ident, vec[@meta_item], def_id);
view_item_import(ident, vec[ident], def_id, option.t[def]);
+ view_item_export(ident);
}
type item = spanned[item_];
@@ -306,6 +307,11 @@ fn index_view_item(mod_index index, @view_item it) {
case(ast.view_item_import(?def_ident,_,_,_)) {
index.insert(def_ident, ast.mie_view_item(it));
}
+ case(ast.view_item_export(_)) {
+ // NB: don't index these, they might collide with
+ // the import or use that they're exporting. Have
+ // to do linear search for exports.
+ }
}
}