2010-08-18 09:00:10 -07:00
|
|
|
|
|
|
|
import std.map.hashmap;
|
2010-11-03 17:10:37 -07:00
|
|
|
import std.option;
|
2011-01-04 18:19:36 -05:00
|
|
|
import std._vec;
|
2010-09-01 13:24:14 -07:00
|
|
|
import util.common.span;
|
2010-10-05 18:21:44 -07:00
|
|
|
import util.common.spanned;
|
2010-11-22 17:41:26 -08:00
|
|
|
import util.common.ty_mach;
|
2011-02-23 14:37:39 -08:00
|
|
|
import util.common.filename;
|
2010-08-18 09:00:10 -07:00
|
|
|
|
|
|
|
type ident = str;
|
|
|
|
|
2011-01-13 17:42:28 -08:00
|
|
|
type path_ = rec(vec[ident] idents, vec[@ty] types);
|
|
|
|
type path = spanned[path_];
|
2010-10-04 17:25:52 -07:00
|
|
|
|
2010-10-05 18:21:44 -07:00
|
|
|
type crate_num = int;
|
2010-10-18 16:15:25 -07:00
|
|
|
type def_num = int;
|
|
|
|
type def_id = tup(crate_num, def_num);
|
|
|
|
|
2010-11-24 18:01:20 -08:00
|
|
|
type ty_param = rec(ident ident, def_id id);
|
|
|
|
|
2010-11-03 15:53:53 -07:00
|
|
|
// Annotations added during successive passes.
|
|
|
|
tag ann {
|
|
|
|
ann_none;
|
2010-12-21 12:13:51 -08:00
|
|
|
ann_type(@middle.ty.t);
|
2010-11-03 15:53:53 -07:00
|
|
|
}
|
|
|
|
|
2010-10-18 16:15:25 -07:00
|
|
|
tag def {
|
|
|
|
def_fn(def_id);
|
2010-12-14 15:32:13 -08:00
|
|
|
def_obj(def_id);
|
2010-12-30 15:27:19 -08:00
|
|
|
def_obj_field(def_id);
|
2010-10-18 16:15:25 -07:00
|
|
|
def_mod(def_id);
|
|
|
|
def_const(def_id);
|
|
|
|
def_arg(def_id);
|
|
|
|
def_local(def_id);
|
2010-12-01 10:19:20 -08:00
|
|
|
def_variant(def_id /* tag */, def_id /* variant */);
|
2010-10-18 16:15:25 -07:00
|
|
|
def_ty(def_id);
|
|
|
|
def_ty_arg(def_id);
|
2010-12-10 18:08:32 -08:00
|
|
|
def_binding(def_id);
|
2011-01-01 13:13:00 -05:00
|
|
|
def_use(def_id);
|
2011-02-07 15:07:27 -05:00
|
|
|
def_native_ty(def_id);
|
|
|
|
def_native_fn(def_id);
|
2010-10-05 18:21:44 -07:00
|
|
|
}
|
2010-10-04 17:25:52 -07:00
|
|
|
|
2010-10-05 18:21:44 -07:00
|
|
|
type crate = spanned[crate_];
|
|
|
|
type crate_ = rec(_mod module);
|
2010-08-18 09:00:10 -07:00
|
|
|
|
2011-02-23 14:37:39 -08:00
|
|
|
tag crate_directive_ {
|
|
|
|
cdir_expr(@expr);
|
2011-02-24 15:54:55 -08:00
|
|
|
// FIXME: cdir_let should be eliminated
|
|
|
|
// and redirected to the use of const stmt_decls inside
|
|
|
|
// crate directive blocks.
|
|
|
|
cdir_let(ident, @expr, vec[@crate_directive]);
|
2011-02-23 14:37:39 -08:00
|
|
|
cdir_src_mod(ident, option.t[filename]);
|
2011-02-24 12:14:05 -08:00
|
|
|
cdir_dir_mod(ident, option.t[filename], vec[@crate_directive]);
|
2011-02-23 14:37:39 -08:00
|
|
|
cdir_view_item(@view_item);
|
2011-03-04 11:28:40 -08:00
|
|
|
cdir_meta(vec[@meta_item]);
|
2011-02-23 14:37:39 -08:00
|
|
|
cdir_syntax(path);
|
|
|
|
cdir_auth(path, effect);
|
|
|
|
}
|
|
|
|
type crate_directive = spanned[crate_directive_];
|
|
|
|
|
|
|
|
|
2010-12-30 11:21:37 -05:00
|
|
|
type meta_item = spanned[meta_item_];
|
|
|
|
type meta_item_ = rec(ident name, str value);
|
|
|
|
|
2010-10-05 18:21:44 -07:00
|
|
|
type block = spanned[block_];
|
2010-10-18 18:19:16 -07:00
|
|
|
type block_ = rec(vec[@stmt] stmts,
|
2010-11-29 17:11:03 -08:00
|
|
|
option.t[@expr] expr,
|
2010-10-18 18:19:16 -07:00
|
|
|
hashmap[ident,uint] index);
|
2010-08-18 09:00:10 -07:00
|
|
|
|
2010-12-12 16:30:34 -08:00
|
|
|
type variant_def = tup(def_id /* tag */, def_id /* variant */);
|
|
|
|
|
2010-11-24 14:42:01 -08:00
|
|
|
type pat = spanned[pat_];
|
|
|
|
tag pat_ {
|
2010-11-24 15:45:59 -08:00
|
|
|
pat_wild(ann);
|
2010-12-10 17:24:53 -08:00
|
|
|
pat_bind(ident, def_id, ann);
|
2011-02-10 18:59:23 -08:00
|
|
|
pat_lit(@lit, ann);
|
2011-01-27 15:25:07 -05:00
|
|
|
pat_tag(path, vec[@pat], option.t[variant_def], ann);
|
2010-11-24 14:42:01 -08:00
|
|
|
}
|
|
|
|
|
2010-11-29 14:18:26 -08:00
|
|
|
tag mutability {
|
|
|
|
mut;
|
|
|
|
imm;
|
|
|
|
}
|
|
|
|
|
2011-03-07 15:38:20 -08:00
|
|
|
tag opacity {
|
|
|
|
op_abstract;
|
|
|
|
op_transparent;
|
|
|
|
}
|
|
|
|
|
2010-12-03 18:03:28 -08:00
|
|
|
tag layer {
|
|
|
|
layer_value;
|
|
|
|
layer_state;
|
|
|
|
layer_gc;
|
|
|
|
}
|
|
|
|
|
|
|
|
tag effect {
|
|
|
|
eff_pure;
|
|
|
|
eff_impure;
|
|
|
|
eff_unsafe;
|
|
|
|
}
|
|
|
|
|
2011-02-18 17:30:57 -08:00
|
|
|
tag proto {
|
|
|
|
proto_iter;
|
|
|
|
proto_fn;
|
|
|
|
}
|
|
|
|
|
2010-09-27 18:25:02 -07:00
|
|
|
tag binop {
|
2010-09-28 10:30:34 -07:00
|
|
|
add;
|
|
|
|
sub;
|
|
|
|
mul;
|
|
|
|
div;
|
|
|
|
rem;
|
|
|
|
and;
|
|
|
|
or;
|
|
|
|
bitxor;
|
2010-09-27 18:25:02 -07:00
|
|
|
bitand;
|
|
|
|
bitor;
|
|
|
|
lsl;
|
|
|
|
lsr;
|
|
|
|
asr;
|
|
|
|
eq;
|
|
|
|
lt;
|
|
|
|
le;
|
|
|
|
ne;
|
|
|
|
ge;
|
|
|
|
gt;
|
|
|
|
}
|
|
|
|
|
2011-03-04 07:22:43 +01:00
|
|
|
fn binop_to_str(binop op) -> str {
|
|
|
|
alt (op) {
|
|
|
|
case (add) {ret "+";}
|
|
|
|
case (sub) {ret "-";}
|
|
|
|
case (mul) {ret "*";}
|
|
|
|
case (div) {ret "/";}
|
|
|
|
case (rem) {ret "%";}
|
|
|
|
case (and) {ret "&&";}
|
|
|
|
case (or) {ret "||";}
|
|
|
|
case (bitxor) {ret "^";}
|
|
|
|
case (bitand) {ret "&";}
|
|
|
|
case (bitor) {ret "|";}
|
|
|
|
case (lsl) {ret "<<";}
|
|
|
|
case (lsr) {ret ">>";}
|
|
|
|
case (asr) {ret ">>>";}
|
|
|
|
case (eq) {ret "==";}
|
|
|
|
case (lt) {ret "<";}
|
|
|
|
case (le) {ret "<=";}
|
|
|
|
case (ne) {ret "!=";}
|
|
|
|
case (ge) {ret ">=";}
|
|
|
|
case (gt) {ret ">";}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-27 18:25:02 -07:00
|
|
|
tag unop {
|
2010-09-28 10:30:34 -07:00
|
|
|
box;
|
|
|
|
deref;
|
2010-09-27 18:25:02 -07:00
|
|
|
bitnot;
|
|
|
|
not;
|
|
|
|
neg;
|
2011-02-15 12:20:30 -08:00
|
|
|
_mutable;
|
2010-09-27 18:25:02 -07:00
|
|
|
}
|
|
|
|
|
2011-03-04 07:22:43 +01:00
|
|
|
fn unop_to_str(unop op) -> str {
|
|
|
|
alt (op) {
|
|
|
|
case (box) {ret "@";}
|
|
|
|
case (deref) {ret "*";}
|
|
|
|
case (bitnot) {ret "~";}
|
|
|
|
case (not) {ret "!";}
|
|
|
|
case (neg) {ret "-";}
|
|
|
|
case (_mutable) {ret "mutable";}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-03 18:03:28 -08:00
|
|
|
tag mode {
|
|
|
|
val;
|
|
|
|
alias;
|
|
|
|
}
|
|
|
|
|
2010-10-05 18:21:44 -07:00
|
|
|
type stmt = spanned[stmt_];
|
|
|
|
tag stmt_ {
|
2010-09-09 15:59:29 -07:00
|
|
|
stmt_decl(@decl);
|
2010-10-04 15:55:12 -07:00
|
|
|
stmt_expr(@expr);
|
2011-02-24 15:54:55 -08:00
|
|
|
// These only exist in crate-level blocks.
|
|
|
|
stmt_crate_directive(@crate_directive);
|
2010-09-09 15:59:29 -07:00
|
|
|
}
|
|
|
|
|
2010-11-03 17:10:37 -07:00
|
|
|
type local = rec(option.t[@ty] ty,
|
2010-10-18 18:19:16 -07:00
|
|
|
bool infer,
|
|
|
|
ident ident,
|
2010-11-03 17:10:37 -07:00
|
|
|
option.t[@expr] init,
|
2010-11-12 16:11:33 -08:00
|
|
|
def_id id,
|
|
|
|
ann ann);
|
2010-10-18 18:19:16 -07:00
|
|
|
|
2010-10-05 18:21:44 -07:00
|
|
|
type decl = spanned[decl_];
|
|
|
|
tag decl_ {
|
2010-10-19 14:54:10 -07:00
|
|
|
decl_local(@local);
|
2010-10-18 18:19:16 -07:00
|
|
|
decl_item(@item);
|
2010-09-09 15:59:29 -07:00
|
|
|
}
|
|
|
|
|
2010-12-10 18:08:32 -08:00
|
|
|
type arm = rec(@pat pat, block block, hashmap[ident,def_id] index);
|
2010-11-24 15:45:59 -08:00
|
|
|
|
2010-11-30 16:31:43 -08:00
|
|
|
type elt = rec(mutability mut, @expr expr);
|
|
|
|
type field = rec(mutability mut, ident ident, @expr expr);
|
|
|
|
|
2010-10-05 18:21:44 -07:00
|
|
|
type expr = spanned[expr_];
|
|
|
|
tag expr_ {
|
2010-11-03 15:53:53 -07:00
|
|
|
expr_vec(vec[@expr], ann);
|
2010-11-30 16:31:43 -08:00
|
|
|
expr_tup(vec[elt], ann);
|
2011-02-14 15:52:38 -08:00
|
|
|
expr_rec(vec[field], option.t[@expr], ann);
|
2010-11-03 15:53:53 -07:00
|
|
|
expr_call(@expr, vec[@expr], ann);
|
2010-12-20 18:58:18 -08:00
|
|
|
expr_bind(@expr, vec[option.t[@expr]], ann);
|
2010-11-03 15:53:53 -07:00
|
|
|
expr_binary(binop, @expr, @expr, ann);
|
|
|
|
expr_unary(unop, @expr, ann);
|
|
|
|
expr_lit(@lit, ann);
|
|
|
|
expr_cast(@expr, @ty, ann);
|
2011-02-01 16:23:48 -08:00
|
|
|
expr_if(@expr, block, vec[tup(@expr, block)], option.t[block], ann);
|
2010-11-03 15:53:53 -07:00
|
|
|
expr_while(@expr, block, ann);
|
2011-01-20 15:02:12 -08:00
|
|
|
expr_for(@decl, @expr, block, ann);
|
2011-02-14 18:17:31 -08:00
|
|
|
expr_for_each(@decl, @expr, block, ann);
|
2010-11-03 15:53:53 -07:00
|
|
|
expr_do_while(block, @expr, ann);
|
2010-11-24 14:42:01 -08:00
|
|
|
expr_alt(@expr, vec[arm], ann);
|
2010-11-03 15:53:53 -07:00
|
|
|
expr_block(block, ann);
|
|
|
|
expr_assign(@expr /* TODO: @expr|is_lval */, @expr, ann);
|
2010-12-08 14:50:47 -08:00
|
|
|
expr_assign_op(binop, @expr /* TODO: @expr|is_lval */, @expr, ann);
|
2010-11-03 15:53:53 -07:00
|
|
|
expr_field(@expr, ident, ann);
|
|
|
|
expr_index(@expr, @expr, ann);
|
2011-01-13 17:42:28 -08:00
|
|
|
expr_path(path, option.t[def], ann);
|
2011-02-27 22:35:27 -05:00
|
|
|
expr_ext(path, vec[@expr], option.t[@expr], @expr, ann);
|
2011-02-14 17:46:28 -08:00
|
|
|
expr_fail;
|
|
|
|
expr_ret(option.t[@expr]);
|
2011-02-14 17:58:32 -08:00
|
|
|
expr_put(option.t[@expr]);
|
2011-02-14 17:46:28 -08:00
|
|
|
expr_be(@expr);
|
|
|
|
expr_log(@expr);
|
|
|
|
expr_check_expr(@expr);
|
2010-09-09 15:59:29 -07:00
|
|
|
}
|
|
|
|
|
2010-10-05 18:21:44 -07:00
|
|
|
type lit = spanned[lit_];
|
|
|
|
tag lit_ {
|
2010-09-27 18:25:02 -07:00
|
|
|
lit_str(str);
|
2010-09-09 15:59:29 -07:00
|
|
|
lit_char(char);
|
|
|
|
lit_int(int);
|
2010-09-21 16:22:32 -07:00
|
|
|
lit_uint(uint);
|
2010-11-22 17:41:26 -08:00
|
|
|
lit_mach_int(ty_mach, int);
|
2010-09-20 23:56:43 -07:00
|
|
|
lit_nil;
|
2010-09-09 15:59:29 -07:00
|
|
|
lit_bool(bool);
|
|
|
|
}
|
|
|
|
|
2010-11-03 16:43:12 -07:00
|
|
|
// NB: If you change this, you'll probably want to change the corresponding
|
2010-12-21 12:13:51 -08:00
|
|
|
// type structure in middle/ty.rs as well.
|
2010-12-03 18:03:28 -08:00
|
|
|
|
2010-11-30 16:31:43 -08:00
|
|
|
type ty_field = rec(ident ident, @ty ty);
|
2010-12-03 18:03:28 -08:00
|
|
|
type ty_arg = rec(mode mode, @ty ty);
|
2010-12-14 17:42:12 -08:00
|
|
|
// TODO: effect
|
2011-02-18 17:30:57 -08:00
|
|
|
type ty_method = rec(proto proto, ident ident,
|
|
|
|
vec[ty_arg] inputs, @ty output);
|
2010-10-05 18:21:44 -07:00
|
|
|
type ty = spanned[ty_];
|
|
|
|
tag ty_ {
|
2010-09-20 23:56:43 -07:00
|
|
|
ty_nil;
|
|
|
|
ty_bool;
|
|
|
|
ty_int;
|
2010-09-21 16:22:32 -07:00
|
|
|
ty_uint;
|
|
|
|
ty_machine(util.common.ty_mach);
|
2010-09-20 23:56:43 -07:00
|
|
|
ty_char;
|
2010-09-21 16:22:32 -07:00
|
|
|
ty_str;
|
|
|
|
ty_box(@ty);
|
2010-10-13 10:55:20 -07:00
|
|
|
ty_vec(@ty);
|
2010-11-29 15:29:55 -08:00
|
|
|
ty_tup(vec[@ty]);
|
2010-11-30 16:31:43 -08:00
|
|
|
ty_rec(vec[ty_field]);
|
2011-02-18 17:30:57 -08:00
|
|
|
ty_fn(proto, vec[ty_arg], @ty); // TODO: effect
|
2010-12-14 17:42:12 -08:00
|
|
|
ty_obj(vec[ty_method]);
|
2010-11-03 17:10:37 -07:00
|
|
|
ty_path(path, option.t[def]);
|
2010-11-29 12:29:57 -08:00
|
|
|
ty_mutable(@ty);
|
2011-02-01 14:56:21 -08:00
|
|
|
ty_type;
|
2011-03-04 14:15:19 -08:00
|
|
|
ty_constr(@ty, vec[@constr]);
|
2010-09-09 15:59:29 -07:00
|
|
|
}
|
|
|
|
|
2011-03-04 14:15:19 -08:00
|
|
|
tag constr_arg_ {
|
|
|
|
carg_base;
|
|
|
|
carg_ident(ident);
|
|
|
|
}
|
|
|
|
type constr_arg = spanned[constr_arg_];
|
|
|
|
type constr_ = rec(path path, vec[@constr_arg] args);
|
|
|
|
type constr = spanned[constr_];
|
|
|
|
|
2010-10-18 16:15:25 -07:00
|
|
|
type arg = rec(mode mode, @ty ty, ident ident, def_id id);
|
2011-02-04 11:10:04 -05:00
|
|
|
type fn_decl = rec(effect effect,
|
|
|
|
vec[arg] inputs,
|
|
|
|
@ty output);
|
|
|
|
type _fn = rec(fn_decl decl,
|
2011-02-25 12:08:21 -05:00
|
|
|
proto proto,
|
2010-08-18 09:00:10 -07:00
|
|
|
block body);
|
|
|
|
|
2010-12-14 15:32:13 -08:00
|
|
|
|
2010-12-16 18:34:04 -08:00
|
|
|
type method_ = rec(ident ident, _fn meth, def_id id, ann ann);
|
2010-12-14 15:32:13 -08:00
|
|
|
type method = spanned[method_];
|
|
|
|
|
2010-12-16 18:34:04 -08:00
|
|
|
type obj_field = rec(@ty ty, ident ident, def_id id, ann ann);
|
2010-12-14 15:32:13 -08:00
|
|
|
type _obj = rec(vec[obj_field] fields,
|
2011-03-01 17:32:16 -08:00
|
|
|
vec[@method] methods,
|
|
|
|
option.t[block] dtor);
|
2010-12-14 15:32:13 -08:00
|
|
|
|
2010-12-01 10:19:20 -08:00
|
|
|
tag mod_index_entry {
|
2011-01-04 18:19:36 -05:00
|
|
|
mie_view_item(@view_item);
|
|
|
|
mie_item(@item);
|
|
|
|
mie_tag_variant(@item /* tag item */, uint /* variant index */);
|
2010-12-01 10:19:20 -08:00
|
|
|
}
|
|
|
|
|
2011-03-07 11:48:43 -08:00
|
|
|
tag native_mod_index_entry {
|
|
|
|
nmie_view_item(@view_item);
|
|
|
|
nmie_item(@native_item);
|
|
|
|
}
|
|
|
|
|
2011-01-01 13:13:00 -05:00
|
|
|
type mod_index = hashmap[ident,mod_index_entry];
|
|
|
|
type _mod = rec(vec[@view_item] view_items,
|
|
|
|
vec[@item] items,
|
|
|
|
mod_index index);
|
2010-08-18 09:00:10 -07:00
|
|
|
|
2011-02-23 14:06:37 -05:00
|
|
|
tag native_abi {
|
|
|
|
native_abi_rust;
|
|
|
|
native_abi_cdecl;
|
|
|
|
}
|
|
|
|
|
2011-02-02 10:43:57 -05:00
|
|
|
type native_mod = rec(str native_name,
|
2011-02-23 14:06:37 -05:00
|
|
|
native_abi abi,
|
2011-03-07 11:48:43 -08:00
|
|
|
vec[@view_item] view_items,
|
2011-02-02 10:43:57 -05:00
|
|
|
vec[@native_item] items,
|
|
|
|
native_mod_index index);
|
2011-03-07 11:48:43 -08:00
|
|
|
type native_mod_index = hashmap[ident,native_mod_index_entry];
|
2011-02-01 13:40:04 -05:00
|
|
|
|
2010-12-03 18:12:51 -08:00
|
|
|
type variant_arg = rec(@ty ty, def_id id);
|
|
|
|
type variant = rec(str name, vec[variant_arg] args, def_id id, ann ann);
|
2010-11-24 11:36:35 -08:00
|
|
|
|
2011-01-01 12:55:18 -05:00
|
|
|
type view_item = spanned[view_item_];
|
|
|
|
tag view_item_ {
|
2011-01-01 13:13:00 -05:00
|
|
|
view_item_use(ident, vec[@meta_item], def_id);
|
2011-01-28 11:54:59 -05:00
|
|
|
view_item_import(ident, vec[ident], def_id, option.t[def]);
|
2011-03-02 13:50:42 -08:00
|
|
|
view_item_export(ident);
|
2011-01-01 12:55:18 -05:00
|
|
|
}
|
|
|
|
|
2010-10-05 18:21:44 -07:00
|
|
|
type item = spanned[item_];
|
|
|
|
tag item_ {
|
2010-12-09 14:37:50 -08:00
|
|
|
item_const(ident, @ty, @expr, def_id, ann);
|
2010-11-24 16:52:49 -08:00
|
|
|
item_fn(ident, _fn, vec[ty_param], def_id, ann);
|
2010-10-18 18:19:16 -07:00
|
|
|
item_mod(ident, _mod, def_id);
|
2011-02-01 13:40:04 -05:00
|
|
|
item_native_mod(ident, native_mod, def_id);
|
2010-11-24 17:36:22 -08:00
|
|
|
item_ty(ident, @ty, vec[ty_param], def_id, ann);
|
2010-11-24 17:15:54 -08:00
|
|
|
item_tag(ident, vec[variant], vec[ty_param], def_id);
|
2010-12-14 15:32:13 -08:00
|
|
|
item_obj(ident, _obj, vec[ty_param], def_id, ann);
|
2010-09-09 15:59:29 -07:00
|
|
|
}
|
2010-08-18 09:00:10 -07:00
|
|
|
|
2011-02-02 10:43:57 -05:00
|
|
|
type native_item = spanned[native_item_];
|
|
|
|
tag native_item_ {
|
|
|
|
native_item_ty(ident, def_id);
|
2011-02-16 14:02:02 -05:00
|
|
|
native_item_fn(ident, fn_decl, vec[ty_param], def_id, ann);
|
2011-02-02 10:43:57 -05:00
|
|
|
}
|
|
|
|
|
2011-01-04 18:19:36 -05:00
|
|
|
fn index_view_item(mod_index index, @view_item it) {
|
|
|
|
alt (it.node) {
|
|
|
|
case(ast.view_item_use(?id, _, _)) {
|
|
|
|
index.insert(id, ast.mie_view_item(it));
|
|
|
|
}
|
2011-01-28 11:54:59 -05:00
|
|
|
case(ast.view_item_import(?def_ident,_,_,_)) {
|
|
|
|
index.insert(def_ident, ast.mie_view_item(it));
|
2011-01-04 18:19:36 -05:00
|
|
|
}
|
2011-03-02 13:50:42 -08:00
|
|
|
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.
|
|
|
|
}
|
2011-01-04 18:19:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn index_item(mod_index index, @item it) {
|
|
|
|
alt (it.node) {
|
|
|
|
case (ast.item_const(?id, _, _, _, _)) {
|
|
|
|
index.insert(id, ast.mie_item(it));
|
|
|
|
}
|
|
|
|
case (ast.item_fn(?id, _, _, _, _)) {
|
|
|
|
index.insert(id, ast.mie_item(it));
|
|
|
|
}
|
|
|
|
case (ast.item_mod(?id, _, _)) {
|
|
|
|
index.insert(id, ast.mie_item(it));
|
|
|
|
}
|
2011-02-01 13:40:04 -05:00
|
|
|
case (ast.item_native_mod(?id, _, _)) {
|
|
|
|
index.insert(id, ast.mie_item(it));
|
|
|
|
}
|
2011-01-04 18:19:36 -05:00
|
|
|
case (ast.item_ty(?id, _, _, _, _)) {
|
|
|
|
index.insert(id, ast.mie_item(it));
|
|
|
|
}
|
|
|
|
case (ast.item_tag(?id, ?variants, _, _)) {
|
|
|
|
index.insert(id, ast.mie_item(it));
|
|
|
|
let uint variant_idx = 0u;
|
|
|
|
for (ast.variant v in variants) {
|
|
|
|
index.insert(v.name,
|
|
|
|
ast.mie_tag_variant(it, variant_idx));
|
|
|
|
variant_idx += 1u;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case (ast.item_obj(?id, _, _, _, _)) {
|
|
|
|
index.insert(id, ast.mie_item(it));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-08-12 10:27:50 -07:00
|
|
|
|
2011-02-02 10:43:57 -05:00
|
|
|
fn index_native_item(native_mod_index index, @native_item it) {
|
|
|
|
alt (it.node) {
|
|
|
|
case (ast.native_item_ty(?id, _)) {
|
2011-03-07 11:48:43 -08:00
|
|
|
index.insert(id, ast.nmie_item(it));
|
2011-02-02 10:43:57 -05:00
|
|
|
}
|
2011-02-16 14:02:02 -05:00
|
|
|
case (ast.native_item_fn(?id, _, _, _, _)) {
|
2011-03-07 11:48:43 -08:00
|
|
|
index.insert(id, ast.nmie_item(it));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn index_native_view_item(native_mod_index index, @view_item it) {
|
|
|
|
alt (it.node) {
|
|
|
|
case(ast.view_item_import(?def_ident,_,_,_)) {
|
|
|
|
index.insert(def_ident, ast.nmie_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.
|
2011-02-04 11:10:04 -05:00
|
|
|
}
|
2011-02-02 10:43:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-09 22:36:37 -05:00
|
|
|
fn is_call_expr(@expr e) -> bool {
|
|
|
|
alt (e.node) {
|
|
|
|
case (expr_call(_, _, _)) {
|
|
|
|
ret true;
|
|
|
|
}
|
|
|
|
case (_) {
|
|
|
|
ret false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-12 10:27:50 -07:00
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
|
|
// End:
|
|
|
|
//
|