From 7d32f3d052b46f09bfd21effd801eebeab4204b3 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Tue, 15 Mar 2011 16:30:43 -0700 Subject: rustc: Add a stub crate reader module for "use" directives --- src/comp/front/ast.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/comp/front/ast.rs') diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index a7ff64fa..3de72406 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -21,6 +21,7 @@ type ty_param = rec(ident ident, def_id id); // Annotations added during successive passes. tag ann { ann_none; + ann_crate(@external_crate_info); ann_type(@middle.ty.t, option.t[vec[@middle.ty.t]] /* ty param substs */); } @@ -370,6 +371,9 @@ tag native_item_ { native_item_fn(ident, fn_decl, vec[ty_param], def_id, ann); } +// TODO: Actually store something here. +type external_crate_info = (); + fn index_view_item(mod_index index, @view_item it) { alt (it.node) { case(ast.view_item_use(?id, _, _)) { -- cgit v1.2.3