2011-08-21 23:44:41 -05:00
|
|
|
import codemap::span;
|
|
|
|
import ast::*;
|
|
|
|
|
2012-06-04 23:57:27 -05:00
|
|
|
pure fn spanned<T>(lo: uint, hi: uint, +t: T) -> spanned<T> {
|
2012-04-13 14:22:35 -05:00
|
|
|
respan(mk_sp(lo, hi), t)
|
2012-04-19 23:24:42 -05:00
|
|
|
}
|
|
|
|
|
2012-06-04 23:57:27 -05:00
|
|
|
pure fn respan<T>(sp: span, +t: T) -> spanned<T> {
|
2012-04-13 14:22:35 -05:00
|
|
|
{node: t, span: sp}
|
2011-11-18 05:39:20 -06:00
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2012-06-04 23:57:27 -05:00
|
|
|
pure fn dummy_spanned<T>(+t: T) -> spanned<T> {
|
2012-04-13 14:22:35 -05:00
|
|
|
respan(dummy_sp(), t)
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
|
|
|
|
2011-08-21 23:44:41 -05:00
|
|
|
/* assuming that we're not in macro expansion */
|
2012-05-25 10:17:06 -05:00
|
|
|
pure fn mk_sp(lo: uint, hi: uint) -> span {
|
2012-04-13 14:22:35 -05:00
|
|
|
{lo: lo, hi: hi, expn_info: none}
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// make this a const, once the compiler supports it
|
2012-05-25 10:17:06 -05:00
|
|
|
pure fn dummy_sp() -> span { ret mk_sp(0u, 0u); }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn path_name(p: @path) -> str { path_name_i(p.idents) }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2012-06-10 02:49:59 -05:00
|
|
|
pure fn path_name_i(idents: [ident]) -> str {
|
2012-06-14 20:46:33 -05:00
|
|
|
// FIXME: Bad copies (#2543 -- same for everything else that says "bad")
|
2012-06-10 02:49:59 -05:00
|
|
|
str::connect(idents.map({|i|*i}), "::")
|
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn path_to_ident(p: @path) -> ident { vec::last(p.idents) }
|
2012-05-22 00:41:59 -05:00
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn local_def(id: node_id) -> def_id { {crate: local_crate, node: id} }
|
2012-03-21 14:42:34 -05:00
|
|
|
|
|
|
|
pure fn is_local(did: ast::def_id) -> bool { did.crate == local_crate }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn stmt_id(s: stmt) -> node_id {
|
2012-02-14 17:21:53 -06:00
|
|
|
alt s.node {
|
|
|
|
stmt_decl(_, id) { id }
|
|
|
|
stmt_expr(_, id) { id }
|
|
|
|
stmt_semi(_, id) { id }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-30 23:00:57 -06:00
|
|
|
fn variant_def_ids(d: def) -> {enm: def_id, var: def_id} {
|
|
|
|
alt d { def_variant(enum_id, var_id) {
|
|
|
|
ret {enm: enum_id, var: var_id}; }
|
|
|
|
_ { fail "non-variant in variant_def_ids"; } }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn def_id_of_def(d: def) -> def_id {
|
2011-08-21 23:44:41 -05:00
|
|
|
alt d {
|
2012-02-27 18:05:17 -06:00
|
|
|
def_fn(id, _) | def_mod(id) |
|
|
|
|
def_native_mod(id) | def_const(id) |
|
2011-12-28 10:50:12 -06:00
|
|
|
def_variant(_, id) | def_ty(id) | def_ty_param(id, _) |
|
2012-03-29 14:21:13 -05:00
|
|
|
def_use(id) | def_class(id) { id }
|
2012-03-07 05:54:00 -06:00
|
|
|
def_arg(id, _) | def_local(id, _) | def_self(id) |
|
2012-03-09 17:55:13 -06:00
|
|
|
def_upvar(id, _, _) | def_binding(id) | def_region(id) {
|
2012-02-27 18:05:17 -06:00
|
|
|
local_def(id)
|
|
|
|
}
|
|
|
|
|
2012-02-06 08:29:56 -06:00
|
|
|
def_prim_ty(_) { fail; }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn binop_to_str(op: binop) -> str {
|
2011-08-21 23:44:41 -05:00
|
|
|
alt op {
|
2012-01-19 00:37:22 -06:00
|
|
|
add { ret "+"; }
|
|
|
|
subtract { ret "-"; }
|
|
|
|
mul { ret "*"; }
|
|
|
|
div { ret "/"; }
|
|
|
|
rem { ret "%"; }
|
|
|
|
and { ret "&&"; }
|
|
|
|
or { ret "||"; }
|
|
|
|
bitxor { ret "^"; }
|
|
|
|
bitand { ret "&"; }
|
|
|
|
bitor { ret "|"; }
|
2012-05-22 16:59:15 -05:00
|
|
|
shl { ret "<<"; }
|
|
|
|
shr { ret ">>"; }
|
2012-01-19 00:37:22 -06:00
|
|
|
eq { ret "=="; }
|
|
|
|
lt { ret "<"; }
|
|
|
|
le { ret "<="; }
|
|
|
|
ne { ret "!="; }
|
|
|
|
ge { ret ">="; }
|
|
|
|
gt { ret ">"; }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-24 15:41:50 -05:00
|
|
|
pure fn lazy_binop(b: binop) -> bool {
|
2012-01-19 00:37:22 -06:00
|
|
|
alt b { and { true } or { true } _ { false } }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2012-02-21 23:01:33 -06:00
|
|
|
pure fn is_shift_binop(b: binop) -> bool {
|
|
|
|
alt b {
|
2012-05-22 16:59:15 -05:00
|
|
|
shl { true }
|
|
|
|
shr { true }
|
2012-02-21 23:01:33 -06:00
|
|
|
_ { false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn unop_to_str(op: unop) -> str {
|
2011-08-21 23:44:41 -05:00
|
|
|
alt op {
|
2012-02-15 13:25:39 -06:00
|
|
|
box(mt) { if mt == m_mutbl { ret "@mut "; } ret "@"; }
|
|
|
|
uniq(mt) { if mt == m_mutbl { ret "~mut "; } ret "~"; }
|
2012-01-19 00:37:22 -06:00
|
|
|
deref { ret "*"; }
|
|
|
|
not { ret "!"; }
|
|
|
|
neg { ret "-"; }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn is_path(e: @expr) -> bool {
|
2011-08-21 23:44:41 -05:00
|
|
|
ret alt e.node { expr_path(_) { true } _ { false } };
|
|
|
|
}
|
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn int_ty_to_str(t: int_ty) -> str {
|
2011-12-07 14:06:12 -06:00
|
|
|
alt t {
|
2012-01-30 23:00:57 -06:00
|
|
|
ty_char { "u8" } // ???
|
2012-01-19 00:37:22 -06:00
|
|
|
ty_i { "" } ty_i8 { "i8" } ty_i16 { "i16" }
|
|
|
|
ty_i32 { "i32" } ty_i64 { "i64" }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn int_ty_max(t: int_ty) -> u64 {
|
2011-12-07 14:53:05 -06:00
|
|
|
alt t {
|
2012-01-19 00:37:22 -06:00
|
|
|
ty_i8 { 0x80u64 }
|
2012-05-29 13:53:10 -05:00
|
|
|
ty_i16 { 0x8000u64 }
|
2012-01-30 23:00:57 -06:00
|
|
|
ty_i | ty_char | ty_i32 { 0x80000000u64 } // actually ni about ty_i
|
2012-01-19 00:37:22 -06:00
|
|
|
ty_i64 { 0x8000000000000000u64 }
|
2011-12-07 14:53:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn uint_ty_to_str(t: uint_ty) -> str {
|
2011-12-07 14:06:12 -06:00
|
|
|
alt t {
|
2012-01-19 00:37:22 -06:00
|
|
|
ty_u { "u" } ty_u8 { "u8" } ty_u16 { "u16" }
|
|
|
|
ty_u32 { "u32" } ty_u64 { "u64" }
|
2011-12-07 14:06:12 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn uint_ty_max(t: uint_ty) -> u64 {
|
2011-12-07 14:53:05 -06:00
|
|
|
alt t {
|
2012-01-19 00:37:22 -06:00
|
|
|
ty_u8 { 0xffu64 }
|
|
|
|
ty_u16 { 0xffffu64 }
|
2012-01-30 23:00:57 -06:00
|
|
|
ty_u | ty_u32 { 0xffffffffu64 } // actually ni about ty_u
|
2012-01-19 00:37:22 -06:00
|
|
|
ty_u64 { 0xffffffffffffffffu64 }
|
2011-12-07 14:53:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn float_ty_to_str(t: float_ty) -> str {
|
2012-01-19 00:37:22 -06:00
|
|
|
alt t { ty_f { "" } ty_f32 { "f32" } ty_f64 { "f64" } }
|
2011-12-07 14:06:12 -06:00
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
|
|
|
fn is_exported(i: ident, m: _mod) -> bool {
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut local = false;
|
|
|
|
let mut parent_enum : option<ident> = none;
|
2012-04-06 13:01:43 -05:00
|
|
|
for m.items.each {|it|
|
2012-02-18 01:05:20 -06:00
|
|
|
if it.ident == i { local = true; }
|
2011-08-21 23:44:41 -05:00
|
|
|
alt it.node {
|
2012-04-18 23:26:25 -05:00
|
|
|
item_enum(variants, _, _) {
|
2012-04-06 13:01:43 -05:00
|
|
|
for variants.each {|v|
|
Export all enum variants by default; new syntax for selectively exporting variants
See issue 1426 for details. Now, the semantics of "export t;" where t is a tag are
to export all of t's variants as well. "export t{};" exports t but not its
variants, while "export t{a, b, c};" exports only variants a, b, c of t.
To do:
- documentation
- there's currently no checking that a, b, c are actually variants of t in the
above example
- there's also no checking that t is an enum type, in the second two examples above
- change the modules listed in issue 1426 that should have the old export
semantics to use the t{} syntax
I deleted the test export-no-tag-variants since we're doing the opposite now,
and other tests cover the same behavior.
2012-01-22 23:09:43 -06:00
|
|
|
if v.node.name == i {
|
2012-02-18 01:05:20 -06:00
|
|
|
local = true;
|
2012-06-07 22:12:05 -05:00
|
|
|
parent_enum = some(/* FIXME: bad */ copy it.ident);
|
Export all enum variants by default; new syntax for selectively exporting variants
See issue 1426 for details. Now, the semantics of "export t;" where t is a tag are
to export all of t's variants as well. "export t{};" exports t but not its
variants, while "export t{a, b, c};" exports only variants a, b, c of t.
To do:
- documentation
- there's currently no checking that a, b, c are actually variants of t in the
above example
- there's also no checking that t is an enum type, in the second two examples above
- change the modules listed in issue 1426 that should have the old export
semantics to use the t{} syntax
I deleted the test export-no-tag-variants since we're doing the opposite now,
and other tests cover the same behavior.
2012-01-22 23:09:43 -06:00
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ { }
|
|
|
|
}
|
2012-02-18 01:05:20 -06:00
|
|
|
if local { break; }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut has_explicit_exports = false;
|
2012-04-06 13:01:43 -05:00
|
|
|
for m.view_items.each {|vi|
|
2011-08-21 23:44:41 -05:00
|
|
|
alt vi.node {
|
2012-02-18 01:05:20 -06:00
|
|
|
view_item_export(vps) {
|
|
|
|
has_explicit_exports = true;
|
2012-04-06 13:01:43 -05:00
|
|
|
for vps.each {|vp|
|
2012-02-18 01:05:20 -06:00
|
|
|
alt vp.node {
|
|
|
|
ast::view_path_simple(id, _, _) {
|
|
|
|
if id == i { ret true; }
|
|
|
|
alt parent_enum {
|
|
|
|
some(parent_enum_id) {
|
|
|
|
if id == parent_enum_id { ret true; }
|
|
|
|
}
|
|
|
|
_ {}
|
Export all enum variants by default; new syntax for selectively exporting variants
See issue 1426 for details. Now, the semantics of "export t;" where t is a tag are
to export all of t's variants as well. "export t{};" exports t but not its
variants, while "export t{a, b, c};" exports only variants a, b, c of t.
To do:
- documentation
- there's currently no checking that a, b, c are actually variants of t in the
above example
- there's also no checking that t is an enum type, in the second two examples above
- change the modules listed in issue 1426 that should have the old export
semantics to use the t{} syntax
I deleted the test export-no-tag-variants since we're doing the opposite now,
and other tests cover the same behavior.
2012-01-22 23:09:43 -06:00
|
|
|
}
|
2012-02-18 01:05:20 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ast::view_path_list(path, ids, _) {
|
2012-04-23 06:04:46 -05:00
|
|
|
if vec::len(path.idents) == 1u {
|
|
|
|
if i == path.idents[0] { ret true; }
|
2012-04-06 13:01:43 -05:00
|
|
|
for ids.each {|id|
|
2012-02-18 01:05:20 -06:00
|
|
|
if id.node.name == i { ret true; }
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fail "export of path-qualified list";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-13 03:46:56 -05:00
|
|
|
// FIXME: glob-exports aren't supported yet. (#2006)
|
2012-02-18 01:05:20 -06:00
|
|
|
_ {}
|
|
|
|
}
|
Export all enum variants by default; new syntax for selectively exporting variants
See issue 1426 for details. Now, the semantics of "export t;" where t is a tag are
to export all of t's variants as well. "export t{};" exports t but not its
variants, while "export t{a, b, c};" exports only variants a, b, c of t.
To do:
- documentation
- there's currently no checking that a, b, c are actually variants of t in the
above example
- there's also no checking that t is an enum type, in the second two examples above
- change the modules listed in issue 1426 that should have the old export
semantics to use the t{} syntax
I deleted the test export-no-tag-variants since we're doing the opposite now,
and other tests cover the same behavior.
2012-01-22 23:09:43 -06:00
|
|
|
}
|
|
|
|
}
|
2012-02-18 01:05:20 -06:00
|
|
|
_ {}
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// If there are no declared exports then
|
|
|
|
// everything not imported is exported
|
2012-02-18 01:05:20 -06:00
|
|
|
// even if it's local (since it's explicit)
|
|
|
|
ret !has_explicit_exports && local;
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2011-08-26 12:14:58 -05:00
|
|
|
pure fn is_call_expr(e: @expr) -> bool {
|
2011-10-21 07:11:24 -05:00
|
|
|
alt e.node { expr_call(_, _, _) { true } _ { false } }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_constraint_arg(e: @expr) -> bool {
|
|
|
|
alt e.node {
|
|
|
|
expr_lit(_) { ret true; }
|
|
|
|
expr_path(_) { ret true; }
|
|
|
|
_ { ret false; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
fn eq_ty(&&a: @ty, &&b: @ty) -> bool { ret box::ptr_eq(a, b); }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2011-12-06 23:34:50 -06:00
|
|
|
fn hash_ty(&&t: @ty) -> uint {
|
|
|
|
let res = (t.span.lo << 16u) + t.span.hi;
|
|
|
|
ret res;
|
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2012-05-23 02:38:39 -05:00
|
|
|
fn def_eq(a: ast::def_id, b: ast::def_id) -> bool {
|
|
|
|
ret a.crate == b.crate && a.node == b.node;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn hash_def(d: ast::def_id) -> uint {
|
|
|
|
let mut h = 5381u;
|
|
|
|
h = (h << 5u) + h ^ (d.crate as uint);
|
|
|
|
h = (h << 5u) + h ^ (d.node as uint);
|
|
|
|
ret h;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn new_def_hash<V: copy>() -> std::map::hashmap<ast::def_id, V> {
|
|
|
|
let hasher: std::map::hashfn<ast::def_id> = hash_def;
|
|
|
|
let eqer: std::map::eqfn<ast::def_id> = def_eq;
|
|
|
|
ret std::map::hashmap::<ast::def_id, V>(hasher, eqer);
|
|
|
|
}
|
|
|
|
|
2011-08-21 23:44:41 -05:00
|
|
|
fn block_from_expr(e: @expr) -> blk {
|
2011-10-07 17:51:55 -05:00
|
|
|
let blk_ = default_block([], option::some::<@expr>(e), e.id);
|
2011-08-21 23:44:41 -05:00
|
|
|
ret {node: blk_, span: e.span};
|
|
|
|
}
|
|
|
|
|
2012-06-07 22:12:05 -05:00
|
|
|
fn default_block(+stmts1: [@stmt], expr1: option<@expr>, id1: node_id) ->
|
2011-09-02 17:34:58 -05:00
|
|
|
blk_ {
|
2011-11-23 13:57:34 -06:00
|
|
|
{view_items: [], stmts: stmts1, expr: expr1, id: id1, rules: default_blk}
|
2011-08-25 19:42:38 -05:00
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2012-06-07 22:12:05 -05:00
|
|
|
fn ident_to_path(s: span, +i: ident) -> @path {
|
2012-04-24 17:52:52 -05:00
|
|
|
@{span: s, global: false, idents: [i],
|
|
|
|
rp: none, types: []}
|
2012-01-14 18:05:07 -06:00
|
|
|
}
|
|
|
|
|
2012-01-30 23:00:57 -06:00
|
|
|
pure fn is_unguarded(&&a: arm) -> bool {
|
|
|
|
alt a.guard {
|
|
|
|
none { true }
|
|
|
|
_ { false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-31 19:05:20 -06:00
|
|
|
pure fn unguarded_pat(a: arm) -> option<[@pat]> {
|
2012-06-07 22:12:05 -05:00
|
|
|
if is_unguarded(a) { some(/* FIXME: bad */ copy a.pats) } else { none }
|
2012-01-30 23:00:57 -06:00
|
|
|
}
|
|
|
|
|
2012-01-26 05:26:14 -06:00
|
|
|
// Provides an extra node_id to hang callee information on, in case the
|
|
|
|
// operator is deferred to a user-supplied method. The parser is responsible
|
|
|
|
// for reserving this id.
|
|
|
|
fn op_expr_callee_id(e: @expr) -> node_id { e.id - 1 }
|
|
|
|
|
2012-03-28 20:50:33 -05:00
|
|
|
pure fn class_item_ident(ci: @class_member) -> ident {
|
|
|
|
alt ci.node {
|
2012-06-07 22:12:05 -05:00
|
|
|
instance_var(i,_,_,_,_) { /* FIXME: bad */ copy i }
|
|
|
|
class_method(it) { /* FIXME: bad */ copy it.ident }
|
2012-02-07 18:40:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-26 11:59:59 -05:00
|
|
|
type ivar = {ident: ident, ty: @ty, cm: class_mutability,
|
2012-05-08 09:06:24 -05:00
|
|
|
id: node_id, vis: visibility};
|
2012-03-19 12:19:00 -05:00
|
|
|
|
2012-03-28 20:50:33 -05:00
|
|
|
fn public_methods(ms: [@method]) -> [@method] {
|
2012-05-08 09:06:24 -05:00
|
|
|
vec::filter(ms, {|m| alt m.vis {
|
|
|
|
public { true }
|
2012-03-28 20:50:33 -05:00
|
|
|
_ { false }}})
|
2012-03-26 11:59:59 -05:00
|
|
|
}
|
|
|
|
|
2012-03-28 20:50:33 -05:00
|
|
|
fn split_class_items(cs: [@class_member]) -> ([ivar], [@method]) {
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut vs = [], ms = [];
|
2012-04-06 13:01:43 -05:00
|
|
|
for cs.each {|c|
|
2012-03-28 20:50:33 -05:00
|
|
|
alt c.node {
|
2012-05-08 09:06:24 -05:00
|
|
|
instance_var(i, t, cm, id, vis) {
|
2012-06-07 22:12:05 -05:00
|
|
|
vs += [{ident: /* FIXME: bad */ copy i,
|
|
|
|
ty: t,
|
|
|
|
cm: cm,
|
|
|
|
id: id,
|
|
|
|
vis: vis}];
|
2012-03-19 12:19:00 -05:00
|
|
|
}
|
2012-03-28 20:50:33 -05:00
|
|
|
class_method(m) { ms += [m]; }
|
2012-03-19 12:19:00 -05:00
|
|
|
}
|
2012-04-06 13:01:43 -05:00
|
|
|
};
|
2012-03-19 12:19:00 -05:00
|
|
|
(vs, ms)
|
|
|
|
}
|
|
|
|
|
2012-05-08 09:06:24 -05:00
|
|
|
pure fn class_member_visibility(ci: @class_member) -> visibility {
|
2012-03-28 20:50:33 -05:00
|
|
|
alt ci.node {
|
2012-05-08 09:06:24 -05:00
|
|
|
instance_var(_, _, _, _, vis) { vis }
|
|
|
|
class_method(m) { m.vis }
|
2012-03-28 20:50:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-01 21:37:52 -06:00
|
|
|
impl inlined_item_methods for inlined_item {
|
|
|
|
fn ident() -> ident {
|
|
|
|
alt self {
|
2012-06-07 22:12:05 -05:00
|
|
|
ii_item(i) { /* FIXME: bad */ copy i.ident }
|
|
|
|
ii_native(i) { /* FIXME: bad */ copy i.ident }
|
|
|
|
ii_method(_, m) { /* FIXME: bad */ copy m.ident }
|
|
|
|
ii_ctor(_, nm, _, _) { /* FIXME: bad */ copy nm }
|
2012-06-12 18:25:09 -05:00
|
|
|
ii_dtor(_, nm, _, _) { /* FIXME: bad */ copy nm }
|
2012-03-01 21:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn id() -> ast::node_id {
|
|
|
|
alt self {
|
|
|
|
ii_item(i) { i.id }
|
2012-03-21 09:42:20 -05:00
|
|
|
ii_native(i) { i.id }
|
2012-03-01 21:37:52 -06:00
|
|
|
ii_method(_, m) { m.id }
|
2012-04-10 12:52:06 -05:00
|
|
|
ii_ctor(ctor, _, _, _) { ctor.node.id }
|
2012-06-12 18:25:09 -05:00
|
|
|
ii_dtor(dtor, _, _, _) { dtor.node.id }
|
2012-03-01 21:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn accept<E>(e: E, v: visit::vt<E>) {
|
|
|
|
alt self {
|
|
|
|
ii_item(i) { v.visit_item(i, e, v) }
|
2012-03-21 09:42:20 -05:00
|
|
|
ii_native(i) { v.visit_native_item(i, e, v) }
|
2012-03-01 21:37:52 -06:00
|
|
|
ii_method(_, m) { visit::visit_method_helper(m, e, v) }
|
2012-04-10 12:52:06 -05:00
|
|
|
ii_ctor(ctor, nm, tps, parent_id) {
|
|
|
|
visit::visit_class_ctor_helper(ctor, nm, tps, parent_id, e, v);
|
|
|
|
}
|
2012-06-12 18:25:09 -05:00
|
|
|
ii_dtor(dtor, nm, tps, parent_id) {
|
|
|
|
visit::visit_class_dtor_helper(dtor, tps, parent_id, e, v);
|
|
|
|
}
|
2012-03-01 21:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-04-13 14:22:35 -05:00
|
|
|
|
|
|
|
/* True if d is either a def_self, or a chain of def_upvars
|
|
|
|
referring to a def_self */
|
|
|
|
fn is_self(d: ast::def) -> bool {
|
|
|
|
alt d {
|
|
|
|
def_self(_) { true }
|
|
|
|
def_upvar(_, d, _) { is_self(*d) }
|
|
|
|
_ { false }
|
|
|
|
}
|
|
|
|
}
|
2012-04-26 18:13:59 -05:00
|
|
|
|
|
|
|
#[doc = "Maps a binary operator to its precedence"]
|
|
|
|
fn operator_prec(op: ast::binop) -> uint {
|
|
|
|
alt op {
|
|
|
|
mul | div | rem { 12u }
|
|
|
|
// 'as' sits between here with 11
|
|
|
|
add | subtract { 10u }
|
2012-05-22 16:59:15 -05:00
|
|
|
shl | shr { 9u }
|
2012-04-26 18:13:59 -05:00
|
|
|
bitand { 8u }
|
|
|
|
bitxor { 7u }
|
|
|
|
bitor { 6u }
|
|
|
|
lt | le | ge | gt { 4u }
|
|
|
|
eq | ne { 3u }
|
|
|
|
and { 2u }
|
|
|
|
or { 1u }
|
|
|
|
}
|
|
|
|
}
|
2012-05-14 16:13:32 -05:00
|
|
|
|
|
|
|
fn dtor_dec() -> fn_decl {
|
2012-05-15 19:59:55 -05:00
|
|
|
let nil_t = @{id: 0, node: ty_nil, span: dummy_sp()};
|
|
|
|
// dtor has one argument, of type ()
|
|
|
|
{inputs: [{mode: ast::expl(ast::by_ref),
|
2012-06-10 02:49:59 -05:00
|
|
|
ty: nil_t, ident: @"_", id: 0}],
|
2012-05-15 19:59:55 -05:00
|
|
|
output: nil_t, purity: impure_fn, cf: return_val, constraints: []}
|
2012-05-14 16:13:32 -05:00
|
|
|
}
|
|
|
|
|
2012-05-16 15:21:04 -05:00
|
|
|
// ______________________________________________________________________
|
|
|
|
// Enumerating the IDs which appear in an AST
|
|
|
|
|
|
|
|
#[auto_serialize]
|
|
|
|
type id_range = {min: node_id, max: node_id};
|
|
|
|
|
|
|
|
fn empty(range: id_range) -> bool {
|
|
|
|
range.min >= range.max
|
|
|
|
}
|
|
|
|
|
|
|
|
fn id_visitor(vfn: fn@(node_id)) -> visit::vt<()> {
|
|
|
|
visit::mk_simple_visitor(@{
|
|
|
|
visit_mod: fn@(_m: _mod, _sp: span, id: node_id) {
|
|
|
|
vfn(id)
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_view_item: fn@(vi: @view_item) {
|
|
|
|
alt vi.node {
|
|
|
|
view_item_use(_, _, id) { vfn(id) }
|
|
|
|
view_item_import(vps) | view_item_export(vps) {
|
|
|
|
vec::iter(vps) {|vp|
|
|
|
|
alt vp.node {
|
|
|
|
view_path_simple(_, _, id) { vfn(id) }
|
|
|
|
view_path_glob(_, id) { vfn(id) }
|
|
|
|
view_path_list(_, _, id) { vfn(id) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_native_item: fn@(ni: @native_item) {
|
|
|
|
vfn(ni.id)
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_item: fn@(i: @item) {
|
|
|
|
vfn(i.id);
|
|
|
|
alt i.node {
|
|
|
|
item_res(_, _, _, d_id, c_id, _) { vfn(d_id); vfn(c_id); }
|
|
|
|
item_enum(vs, _, _) { for vs.each {|v| vfn(v.node.id); } }
|
|
|
|
_ {}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_local: fn@(l: @local) {
|
|
|
|
vfn(l.node.id);
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_block: fn@(b: blk) {
|
|
|
|
vfn(b.node.id);
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_stmt: fn@(s: @stmt) {
|
|
|
|
vfn(ast_util::stmt_id(*s));
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_arm: fn@(_a: arm) { },
|
|
|
|
|
|
|
|
visit_pat: fn@(p: @pat) {
|
|
|
|
vfn(p.id)
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_decl: fn@(_d: @decl) {
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_expr: fn@(e: @expr) {
|
|
|
|
vfn(e.id);
|
2012-06-16 17:22:22 -05:00
|
|
|
alt e.node {
|
2012-06-15 21:00:04 -05:00
|
|
|
expr_index(*) | expr_assign_op(*) |
|
|
|
|
expr_unary(*) | expr_binary(*) {
|
2012-05-16 15:21:04 -05:00
|
|
|
vfn(ast_util::op_expr_callee_id(e));
|
|
|
|
}
|
|
|
|
_ { /* fallthrough */ }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_ty: fn@(t: @ty) {
|
|
|
|
alt t.node {
|
|
|
|
ty_path(_, id) {
|
|
|
|
vfn(id)
|
|
|
|
}
|
|
|
|
_ { /* fall through */ }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_ty_params: fn@(ps: [ty_param]) {
|
|
|
|
vec::iter(ps) {|p| vfn(p.id) }
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_constr: fn@(_p: @path, _sp: span, id: node_id) {
|
|
|
|
vfn(id);
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_fn: fn@(fk: visit::fn_kind, d: fn_decl,
|
|
|
|
_b: blk, _sp: span, id: node_id) {
|
|
|
|
vfn(id);
|
|
|
|
|
|
|
|
alt fk {
|
|
|
|
visit::fk_ctor(_, tps, self_id, parent_id) |
|
|
|
|
visit::fk_dtor(tps, self_id, parent_id) {
|
|
|
|
vec::iter(tps) {|tp| vfn(tp.id)}
|
|
|
|
vfn(id);
|
|
|
|
vfn(self_id);
|
|
|
|
vfn(parent_id.node);
|
|
|
|
}
|
|
|
|
visit::fk_item_fn(_, tps) |
|
|
|
|
visit::fk_res(_, tps, _) {
|
|
|
|
vec::iter(tps) {|tp| vfn(tp.id)}
|
|
|
|
}
|
|
|
|
visit::fk_method(_, tps, m) {
|
|
|
|
vfn(m.self_id);
|
|
|
|
vec::iter(tps) {|tp| vfn(tp.id)}
|
|
|
|
}
|
|
|
|
visit::fk_anon(*) | visit::fk_fn_block(*) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vec::iter(d.inputs) {|arg|
|
|
|
|
vfn(arg.id)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_class_item: fn@(c: @class_member) {
|
|
|
|
alt c.node {
|
|
|
|
instance_var(_, _, _, id,_) {
|
|
|
|
vfn(id)
|
|
|
|
}
|
|
|
|
class_method(_) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_ids_for_inlined_item(item: inlined_item, vfn: fn@(node_id)) {
|
|
|
|
item.accept((), id_visitor(vfn));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compute_id_range(visit_ids_fn: fn(fn@(node_id))) -> id_range {
|
|
|
|
let min = @mut int::max_value;
|
|
|
|
let max = @mut int::min_value;
|
|
|
|
visit_ids_fn { |id|
|
|
|
|
*min = int::min(*min, id);
|
|
|
|
*max = int::max(*max, id + 1);
|
|
|
|
}
|
|
|
|
ret {min:*min, max:*max};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compute_id_range_for_inlined_item(item: inlined_item) -> id_range {
|
|
|
|
compute_id_range { |f| visit_ids_for_inlined_item(item, f) }
|
|
|
|
}
|
|
|
|
|
2012-05-17 22:37:17 -05:00
|
|
|
pure fn is_item_impl(item: @ast::item) -> bool {
|
|
|
|
alt item.node {
|
|
|
|
item_impl(*) { true }
|
|
|
|
_ { false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 01:17:28 -05:00
|
|
|
fn walk_pat(pat: @pat, it: fn(@pat)) {
|
|
|
|
it(pat);
|
|
|
|
alt pat.node {
|
|
|
|
pat_ident(pth, some(p)) { walk_pat(p, it); }
|
|
|
|
pat_rec(fields, _) { for fields.each {|f| walk_pat(f.pat, it); } }
|
|
|
|
pat_enum(_, some(s)) | pat_tup(s) { for s.each {|p| walk_pat(p, it); } }
|
|
|
|
pat_box(s) | pat_uniq(s) { walk_pat(s, it); }
|
|
|
|
pat_wild | pat_lit(_) | pat_range(_, _) | pat_ident(_, _)
|
|
|
|
| pat_enum(_, _) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-01 07:35:00 -05:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|