2012-11-15 21:37:29 -06:00
|
|
|
use codemap::{span, BytePos};
|
2012-09-04 13:37:29 -05:00
|
|
|
use ast::*;
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2012-11-15 21:37:29 -06:00
|
|
|
pure fn spanned<T>(+lo: BytePos, +hi: BytePos, +t: T) -> spanned<T> {
|
2012-09-10 20:28:00 -05:00
|
|
|
respan(mk_sp(lo, hi), move 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-09-10 20:28:00 -05:00
|
|
|
{node: move 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-09-10 20:28:00 -05:00
|
|
|
respan(dummy_sp(), move 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-11-15 21:37:29 -06:00
|
|
|
pure fn mk_sp(+lo: BytePos, +hi: BytePos) -> span {
|
2012-11-12 17:12:20 -06:00
|
|
|
span {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-11-15 21:37:29 -06:00
|
|
|
pure fn dummy_sp() -> span { return mk_sp(BytePos(0), BytePos(0)); }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
|
|
|
|
2012-07-18 18:18:02 -05:00
|
|
|
|
2012-09-19 20:50:24 -05:00
|
|
|
pure fn path_name_i(idents: ~[ident], intr: @token::ident_interner) -> ~str {
|
2012-06-14 20:46:33 -05:00
|
|
|
// FIXME: Bad copies (#2543 -- same for everything else that says "bad")
|
2012-09-21 20:43:30 -05:00
|
|
|
str::connect(idents.map(|i| *intr.get(*i)), ~"::")
|
2012-06-10 02:49:59 -05:00
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2012-07-18 18:18:02 -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-08-06 14:34:08 -05:00
|
|
|
match s.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
stmt_decl(_, id) => id,
|
|
|
|
stmt_expr(_, id) => id,
|
2012-11-12 22:06:55 -06:00
|
|
|
stmt_semi(_, id) => id,
|
|
|
|
stmt_mac(_) => fail ~"attempted to analyze unexpanded stmt",
|
2012-02-14 17:21:53 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-30 23:00:57 -06:00
|
|
|
fn variant_def_ids(d: def) -> {enm: def_id, var: def_id} {
|
2012-08-06 14:34:08 -05:00
|
|
|
match d {
|
2012-08-03 21:59:04 -05:00
|
|
|
def_variant(enum_id, var_id) => {
|
|
|
|
return {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 {
|
2012-08-06 14:34:08 -05:00
|
|
|
match d {
|
2012-10-12 19:00:08 -05:00
|
|
|
def_fn(id, _) | def_static_method(id, _, _) | def_mod(id) |
|
2012-06-26 18:18:37 -05:00
|
|
|
def_foreign_mod(id) | def_const(id) |
|
2011-12-28 10:50:12 -06:00
|
|
|
def_variant(_, id) | def_ty(id) | def_ty_param(id, _) |
|
2012-10-08 13:49:01 -05:00
|
|
|
def_use(id) | def_class(id) => {
|
2012-08-03 21:59:04 -05:00
|
|
|
id
|
|
|
|
}
|
2012-03-07 05:54:00 -06:00
|
|
|
def_arg(id, _) | def_local(id, _) | def_self(id) |
|
2012-08-20 18:53:33 -05:00
|
|
|
def_upvar(id, _, _, _) | def_binding(id, _) | def_region(id)
|
2012-08-14 21:20:56 -05:00
|
|
|
| def_typaram_binder(id) | def_label(id) => {
|
2012-02-27 18:05:17 -06:00
|
|
|
local_def(id)
|
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
def_prim_ty(_) => fail
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
pure fn binop_to_str(op: binop) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2012-08-03 21:59:04 -05:00
|
|
|
add => return ~"+",
|
|
|
|
subtract => return ~"-",
|
|
|
|
mul => return ~"*",
|
|
|
|
div => return ~"/",
|
|
|
|
rem => return ~"%",
|
|
|
|
and => return ~"&&",
|
|
|
|
or => return ~"||",
|
|
|
|
bitxor => return ~"^",
|
|
|
|
bitand => return ~"&",
|
|
|
|
bitor => return ~"|",
|
|
|
|
shl => return ~"<<",
|
|
|
|
shr => return ~">>",
|
|
|
|
eq => return ~"==",
|
|
|
|
lt => return ~"<",
|
|
|
|
le => return ~"<=",
|
|
|
|
ne => return ~"!=",
|
|
|
|
ge => return ~">=",
|
|
|
|
gt => return ~">"
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-20 14:23:37 -05:00
|
|
|
pure fn binop_to_method_name(op: binop) -> Option<~str> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2012-08-20 14:23:37 -05:00
|
|
|
add => return Some(~"add"),
|
|
|
|
subtract => return Some(~"sub"),
|
|
|
|
mul => return Some(~"mul"),
|
|
|
|
div => return Some(~"div"),
|
|
|
|
rem => return Some(~"modulo"),
|
|
|
|
bitxor => return Some(~"bitxor"),
|
|
|
|
bitand => return Some(~"bitand"),
|
|
|
|
bitor => return Some(~"bitor"),
|
|
|
|
shl => return Some(~"shl"),
|
|
|
|
shr => return Some(~"shr"),
|
2012-08-27 18:26:35 -05:00
|
|
|
lt => return Some(~"lt"),
|
2012-08-29 21:23:15 -05:00
|
|
|
le => return Some(~"le"),
|
|
|
|
ge => return Some(~"ge"),
|
|
|
|
gt => return Some(~"gt"),
|
2012-08-27 18:26:35 -05:00
|
|
|
eq => return Some(~"eq"),
|
2012-09-07 14:44:53 -05:00
|
|
|
ne => return Some(~"ne"),
|
|
|
|
and | or => return None
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-24 15:41:50 -05:00
|
|
|
pure fn lazy_binop(b: binop) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match b {
|
2012-08-03 21:59:04 -05:00
|
|
|
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 {
|
2012-08-06 14:34:08 -05:00
|
|
|
match b {
|
2012-08-03 21:59:04 -05:00
|
|
|
shl => true,
|
|
|
|
shr => true,
|
|
|
|
_ => false
|
2012-02-21 23:01:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
pure fn unop_to_str(op: unop) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2012-08-03 21:59:04 -05:00
|
|
|
box(mt) => if mt == m_mutbl { ~"@mut " } else { ~"@" },
|
|
|
|
uniq(mt) => if mt == m_mutbl { ~"~mut " } else { ~"~" },
|
|
|
|
deref => ~"*",
|
|
|
|
not => ~"!",
|
|
|
|
neg => ~"-"
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-04 10:01:28 -05:00
|
|
|
pure fn is_path(e: @expr) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
return match e.node { expr_path(_) => true, _ => false };
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
pure fn int_ty_to_str(t: int_ty) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t {
|
2012-08-03 21:59:04 -05:00
|
|
|
ty_char => ~"u8", // ???
|
|
|
|
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 {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t {
|
2012-08-03 21:59:04 -05:00
|
|
|
ty_i8 => 0x80u64,
|
|
|
|
ty_i16 => 0x8000u64,
|
|
|
|
ty_i | ty_char | ty_i32 => 0x80000000u64, // actually ni about ty_i
|
|
|
|
ty_i64 => 0x8000000000000000u64
|
2011-12-07 14:53:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
pure fn uint_ty_to_str(t: uint_ty) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t {
|
2012-08-03 21:59:04 -05: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 {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t {
|
2012-08-03 21:59:04 -05:00
|
|
|
ty_u8 => 0xffu64,
|
|
|
|
ty_u16 => 0xffffu64,
|
|
|
|
ty_u | ty_u32 => 0xffffffffu64, // actually ni about ty_u
|
|
|
|
ty_u64 => 0xffffffffffffffffu64
|
2011-12-07 14:53:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
pure fn float_ty_to_str(t: float_ty) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t { ty_f => ~"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;
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut parent_enum : Option<ident> = None;
|
2012-06-30 18:19:07 -05:00
|
|
|
for m.items.each |it| {
|
2012-02-18 01:05:20 -06:00
|
|
|
if it.ident == i { local = true; }
|
2012-08-06 14:34:08 -05:00
|
|
|
match it.node {
|
2012-08-08 19:14:25 -05:00
|
|
|
item_enum(enum_definition, _) =>
|
|
|
|
for enum_definition.variants.each |v| {
|
2012-08-07 16:24:04 -05:00
|
|
|
if v.node.name == i {
|
|
|
|
local = true;
|
2012-08-20 14:23:37 -05:00
|
|
|
parent_enum = Some(/* FIXME (#2543) */ copy it.ident);
|
2012-08-07 16:24:04 -05:00
|
|
|
}
|
2012-08-07 16:34:00 -05:00
|
|
|
},
|
2012-08-03 21:59:04 -05: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-06-30 18:19:07 -05:00
|
|
|
for m.view_items.each |vi| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match vi.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
view_item_export(vps) => {
|
2012-02-18 01:05:20 -06:00
|
|
|
has_explicit_exports = true;
|
2012-06-30 18:19:07 -05:00
|
|
|
for vps.each |vp| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match vp.node {
|
2012-08-31 13:19:07 -05:00
|
|
|
ast::view_path_simple(id, _, _, _) => {
|
2012-08-01 19:30:05 -05:00
|
|
|
if id == i { return true; }
|
2012-08-06 14:34:08 -05:00
|
|
|
match parent_enum {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(parent_enum_id) => {
|
2012-08-01 19:30:05 -05:00
|
|
|
if id == parent_enum_id { return true; }
|
2012-02-18 01:05:20 -06:00
|
|
|
}
|
2012-08-03 21:59:04 -05: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
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::view_path_list(path, ids, _) => {
|
2012-04-23 06:04:46 -05:00
|
|
|
if vec::len(path.idents) == 1u {
|
2012-08-01 19:30:05 -05:00
|
|
|
if i == path.idents[0] { return true; }
|
2012-06-30 18:19:07 -05:00
|
|
|
for ids.each |id| {
|
2012-08-01 19:30:05 -05:00
|
|
|
if id.node.name == i { return true; }
|
2012-02-18 01:05:20 -06:00
|
|
|
}
|
|
|
|
} else {
|
2012-07-14 00:57:48 -05:00
|
|
|
fail ~"export of path-qualified list";
|
2012-02-18 01:05:20 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => ()
|
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-08-03 21:59:04 -05: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)
|
2012-08-01 19:30:05 -05:00
|
|
|
return !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 {
|
2012-08-06 14:34:08 -05:00
|
|
|
match e.node { expr_call(_, _, _) => true, _ => false }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:24:02 -05:00
|
|
|
// This makes def_id hashable
|
2012-11-28 13:36:04 -06:00
|
|
|
#[cfg(stage0)]
|
2012-09-07 19:24:02 -05:00
|
|
|
impl def_id : core::to_bytes::IterBytes {
|
|
|
|
#[inline(always)]
|
2012-10-02 14:19:04 -05:00
|
|
|
pure fn iter_bytes(+lsb0: bool, f: core::to_bytes::Cb) {
|
2012-09-07 19:24:02 -05:00
|
|
|
core::to_bytes::iter_bytes_2(&self.crate, &self.node, lsb0, f);
|
|
|
|
}
|
2012-05-23 02:38:39 -05:00
|
|
|
}
|
2012-11-28 13:36:04 -06:00
|
|
|
#[cfg(stage1)]
|
|
|
|
#[cfg(stage2)]
|
|
|
|
impl def_id : core::to_bytes::IterBytes {
|
|
|
|
#[inline(always)]
|
|
|
|
pure fn iter_bytes(&self, +lsb0: bool, f: core::to_bytes::Cb) {
|
|
|
|
core::to_bytes::iter_bytes_2(&self.crate, &self.node, lsb0, f);
|
|
|
|
}
|
|
|
|
}
|
2012-05-23 02:38:39 -05:00
|
|
|
|
2011-08-21 23:44:41 -05:00
|
|
|
fn block_from_expr(e: @expr) -> blk {
|
2012-08-20 14:23:37 -05:00
|
|
|
let blk_ = default_block(~[], option::Some::<@expr>(e), e.id);
|
2012-08-01 19:30:05 -05:00
|
|
|
return {node: blk_, span: e.span};
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
2012-08-20 14:23:37 -05:00
|
|
|
fn default_block(+stmts1: ~[@stmt], expr1: Option<@expr>, id1: node_id) ->
|
2011-09-02 17:34:58 -05:00
|
|
|
blk_ {
|
2012-06-29 18:26:56 -05:00
|
|
|
{view_items: ~[], stmts: stmts1,
|
2012-06-25 22:00:46 -05:00
|
|
|
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-06-29 18:26:56 -05:00
|
|
|
@{span: s, global: false, idents: ~[i],
|
2012-08-20 14:23:37 -05:00
|
|
|
rp: None, types: ~[]}
|
2012-01-14 18:05:07 -06:00
|
|
|
}
|
|
|
|
|
2012-11-06 20:41:06 -06:00
|
|
|
fn ident_to_pat(id: node_id, s: span, +i: ident) -> @pat {
|
|
|
|
@{id: id,
|
|
|
|
node: pat_ident(bind_by_value, ident_to_path(s, i), None),
|
|
|
|
span: s}
|
|
|
|
}
|
|
|
|
|
2012-09-28 00:20:47 -05:00
|
|
|
pure fn is_unguarded(a: &arm) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match a.guard {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => true,
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => false
|
2012-01-30 23:00:57 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-28 00:20:47 -05:00
|
|
|
pure fn unguarded_pat(a: &arm) -> Option<~[@pat]> {
|
2012-08-20 14:23:37 -05:00
|
|
|
if is_unguarded(a) { Some(/* FIXME (#2543) */ copy a.pats) } else { None }
|
2012-01-30 23:00:57 -06:00
|
|
|
}
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn public_methods(ms: ~[@method]) -> ~[@method] {
|
2012-06-30 18:19:07 -05:00
|
|
|
vec::filter(ms,
|
2012-08-06 14:34:08 -05:00
|
|
|
|m| match m.vis {
|
2012-08-03 21:59:04 -05:00
|
|
|
public => true,
|
|
|
|
_ => false
|
2012-06-30 18:19:07 -05:00
|
|
|
})
|
2012-03-26 11:59:59 -05:00
|
|
|
}
|
|
|
|
|
2012-08-02 17:52:25 -05:00
|
|
|
// extract a ty_method from a trait_method. if the trait_method is
|
|
|
|
// a default, pull out the useful fields to make a ty_method
|
|
|
|
fn trait_method_to_ty_method(method: trait_method) -> ty_method {
|
2012-08-06 14:34:08 -05:00
|
|
|
match method {
|
2012-08-03 21:59:04 -05:00
|
|
|
required(m) => m,
|
|
|
|
provided(m) => {
|
2012-08-02 17:52:25 -05:00
|
|
|
{ident: m.ident, attrs: m.attrs,
|
2012-08-23 20:17:16 -05:00
|
|
|
purity: m.purity, decl: m.decl,
|
|
|
|
tps: m.tps, self_ty: m.self_ty,
|
2012-08-02 17:52:25 -05:00
|
|
|
id: m.id, span: m.span}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-02 17:52:30 -05:00
|
|
|
fn split_trait_methods(trait_methods: ~[trait_method])
|
|
|
|
-> (~[ty_method], ~[@method]) {
|
|
|
|
let mut reqd = ~[], provd = ~[];
|
|
|
|
for trait_methods.each |trt_method| {
|
2012-09-19 18:55:01 -05:00
|
|
|
match *trt_method {
|
2012-09-26 19:33:34 -05:00
|
|
|
required(tm) => reqd.push(tm),
|
|
|
|
provided(m) => provd.push(m)
|
2012-08-02 17:52:30 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
(reqd, provd)
|
|
|
|
}
|
|
|
|
|
2012-08-15 17:53:58 -05:00
|
|
|
pure fn struct_field_visibility(field: ast::struct_field) -> visibility {
|
|
|
|
match field.node.kind {
|
|
|
|
ast::named_field(_, _, visibility) => visibility,
|
|
|
|
ast::unnamed_field => ast::public
|
|
|
|
}
|
2012-03-28 20:50:33 -05:00
|
|
|
}
|
|
|
|
|
2012-07-11 17:00:40 -05:00
|
|
|
trait inlined_item_utils {
|
|
|
|
fn ident() -> ident;
|
|
|
|
fn id() -> ast::node_id;
|
|
|
|
fn accept<E>(e: E, v: visit::vt<E>);
|
|
|
|
}
|
|
|
|
|
2012-08-07 20:10:06 -05:00
|
|
|
impl inlined_item: inlined_item_utils {
|
2012-03-01 21:37:52 -06:00
|
|
|
fn ident() -> ident {
|
2012-08-06 14:34:08 -05:00
|
|
|
match self {
|
2012-08-03 21:59:04 -05:00
|
|
|
ii_item(i) => /* FIXME (#2543) */ copy i.ident,
|
|
|
|
ii_foreign(i) => /* FIXME (#2543) */ copy i.ident,
|
|
|
|
ii_method(_, m) => /* FIXME (#2543) */ copy m.ident,
|
|
|
|
ii_dtor(_, nm, _, _) => /* FIXME (#2543) */ copy nm
|
2012-03-01 21:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn id() -> ast::node_id {
|
2012-08-06 14:34:08 -05:00
|
|
|
match self {
|
2012-08-03 21:59:04 -05:00
|
|
|
ii_item(i) => i.id,
|
|
|
|
ii_foreign(i) => i.id,
|
|
|
|
ii_method(_, m) => m.id,
|
|
|
|
ii_dtor(dtor, _, _, _) => dtor.node.id
|
2012-03-01 21:37:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn accept<E>(e: E, v: visit::vt<E>) {
|
2012-08-06 14:34:08 -05:00
|
|
|
match self {
|
2012-08-03 21:59:04 -05:00
|
|
|
ii_item(i) => v.visit_item(i, e, v),
|
|
|
|
ii_foreign(i) => v.visit_foreign_item(i, e, v),
|
|
|
|
ii_method(_, m) => visit::visit_method_helper(m, e, v),
|
2012-08-24 16:04:38 -05:00
|
|
|
ii_dtor(dtor, _, tps, parent_id) => {
|
2012-06-12 18:25:09 -05:00
|
|
|
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 {
|
2012-08-06 14:34:08 -05:00
|
|
|
match d {
|
2012-08-20 18:53:33 -05:00
|
|
|
def_self(_) => true,
|
|
|
|
def_upvar(_, d, _, _) => is_self(*d),
|
|
|
|
_ => false
|
2012-04-13 14:22:35 -05:00
|
|
|
}
|
|
|
|
}
|
2012-04-26 18:13:59 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Maps a binary operator to its precedence
|
2012-04-26 18:13:59 -05:00
|
|
|
fn operator_prec(op: ast::binop) -> uint {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op {
|
2012-08-03 21:59:04 -05:00
|
|
|
mul | div | rem => 12u,
|
2012-04-26 18:13:59 -05:00
|
|
|
// 'as' sits between here with 11
|
2012-08-03 21:59:04 -05:00
|
|
|
add | subtract => 10u,
|
|
|
|
shl | shr => 9u,
|
|
|
|
bitand => 8u,
|
|
|
|
bitxor => 7u,
|
|
|
|
bitor => 6u,
|
|
|
|
lt | le | ge | gt => 4u,
|
|
|
|
eq | ne => 3u,
|
|
|
|
and => 2u,
|
|
|
|
or => 1u
|
2012-04-26 18:13:59 -05:00
|
|
|
}
|
|
|
|
}
|
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()};
|
2012-09-26 21:40:05 -05:00
|
|
|
// dtor has no args
|
|
|
|
{inputs: ~[],
|
2012-08-23 20:17:16 -05:00
|
|
|
output: nil_t, cf: return_val}
|
2012-05-14 16:13:32 -05:00
|
|
|
}
|
|
|
|
|
2012-05-16 15:21:04 -05:00
|
|
|
// ______________________________________________________________________
|
|
|
|
// Enumerating the IDs which appear in an AST
|
|
|
|
|
2012-10-07 18:33:20 -05:00
|
|
|
#[auto_serialize]
|
|
|
|
#[auto_deserialize]
|
2012-05-16 15:21:04 -05:00
|
|
|
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) {
|
2012-08-06 14:34:08 -05:00
|
|
|
match vi.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
view_item_use(_, _, id) => vfn(id),
|
|
|
|
view_item_import(vps) | view_item_export(vps) => {
|
2012-09-18 23:41:37 -05:00
|
|
|
for vec::each(vps) |vp| {
|
|
|
|
match vp.node {
|
|
|
|
view_path_simple(_, _, _, id) => vfn(id),
|
|
|
|
view_path_glob(_, id) => vfn(id),
|
|
|
|
view_path_list(_, _, id) => vfn(id)
|
|
|
|
}
|
|
|
|
}
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-06-26 18:18:37 -05:00
|
|
|
visit_foreign_item: fn@(ni: @foreign_item) {
|
2012-05-16 15:21:04 -05:00
|
|
|
vfn(ni.id)
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_item: fn@(i: @item) {
|
|
|
|
vfn(i.id);
|
2012-08-06 14:34:08 -05:00
|
|
|
match i.node {
|
2012-08-08 19:14:25 -05:00
|
|
|
item_enum(enum_definition, _) =>
|
|
|
|
for enum_definition.variants.each |v| { vfn(v.node.id); },
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => ()
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
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) {
|
2012-07-11 16:31:35 -05:00
|
|
|
vfn(e.callee_id);
|
2012-05-16 15:21:04 -05:00
|
|
|
vfn(e.id);
|
|
|
|
},
|
|
|
|
|
2012-07-30 21:05:56 -05:00
|
|
|
visit_expr_post: fn@(_e: @expr) {
|
|
|
|
},
|
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
visit_ty: fn@(t: @Ty) {
|
2012-08-06 14:34:08 -05:00
|
|
|
match t.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ty_path(_, id) => vfn(id),
|
|
|
|
_ => { /* fall through */ }
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
visit_ty_params: fn@(ps: ~[ty_param]) {
|
2012-09-18 23:41:37 -05:00
|
|
|
for vec::each(ps) |p| {
|
|
|
|
vfn(p.id);
|
|
|
|
}
|
2012-05-16 15:21:04 -05:00
|
|
|
},
|
|
|
|
|
2012-06-13 18:14:01 -05:00
|
|
|
visit_fn: fn@(fk: visit::fn_kind, d: ast::fn_decl,
|
|
|
|
_b: ast::blk, _sp: span, id: ast::node_id) {
|
2012-05-16 15:21:04 -05:00
|
|
|
vfn(id);
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match fk {
|
2012-09-18 23:41:37 -05:00
|
|
|
visit::fk_dtor(tps, _, self_id, parent_id) => {
|
|
|
|
for vec::each(tps) |tp| { vfn(tp.id); }
|
|
|
|
vfn(id);
|
|
|
|
vfn(self_id);
|
|
|
|
vfn(parent_id.node);
|
|
|
|
}
|
|
|
|
visit::fk_item_fn(_, tps, _) => {
|
|
|
|
for vec::each(tps) |tp| { vfn(tp.id); }
|
|
|
|
}
|
|
|
|
visit::fk_method(_, tps, m) => {
|
|
|
|
vfn(m.self_id);
|
|
|
|
for vec::each(tps) |tp| { vfn(tp.id); }
|
|
|
|
}
|
|
|
|
visit::fk_anon(_, capture_clause) |
|
|
|
|
visit::fk_fn_block(capture_clause) => {
|
|
|
|
for vec::each(*capture_clause) |clause| {
|
|
|
|
vfn(clause.id);
|
|
|
|
}
|
2012-06-13 18:14:01 -05:00
|
|
|
}
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
|
2012-09-18 23:41:37 -05:00
|
|
|
for vec::each(d.inputs) |arg| {
|
2012-05-16 15:21:04 -05:00
|
|
|
vfn(arg.id)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-07-11 12:28:30 -05:00
|
|
|
visit_ty_method: fn@(_ty_m: ty_method) {
|
|
|
|
},
|
|
|
|
|
2012-07-10 15:44:20 -05:00
|
|
|
visit_trait_method: fn@(_ty_m: trait_method) {
|
|
|
|
},
|
|
|
|
|
2012-08-07 19:46:07 -05:00
|
|
|
visit_struct_def: fn@(_sd: @struct_def, _id: ident, _tps: ~[ty_param],
|
2012-08-07 17:54:59 -05:00
|
|
|
_id: node_id) {
|
|
|
|
},
|
|
|
|
|
2012-08-15 17:53:58 -05:00
|
|
|
visit_struct_field: fn@(f: @struct_field) {
|
|
|
|
vfn(f.node.id);
|
|
|
|
},
|
|
|
|
|
|
|
|
visit_struct_method: fn@(_m: @method) {
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2012-06-30 18:19:07 -05:00
|
|
|
do visit_ids_fn |id| {
|
2012-08-30 14:54:50 -05:00
|
|
|
*min = int::min(*min, id);
|
|
|
|
*max = int::max(*max, id + 1);
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return {min:*min, max:*max};
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn compute_id_range_for_inlined_item(item: inlined_item) -> id_range {
|
2012-06-30 18:19:07 -05:00
|
|
|
compute_id_range(|f| visit_ids_for_inlined_item(item, f))
|
2012-05-16 15:21:04 -05:00
|
|
|
}
|
|
|
|
|
2012-05-17 22:37:17 -05:00
|
|
|
pure fn is_item_impl(item: @ast::item) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match item.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
item_impl(*) => true,
|
|
|
|
_ => false
|
2012-05-17 22:37:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 01:17:28 -05:00
|
|
|
fn walk_pat(pat: @pat, it: fn(@pat)) {
|
|
|
|
it(pat);
|
2012-08-06 14:34:08 -05:00
|
|
|
match pat.node {
|
2012-09-19 18:55:01 -05:00
|
|
|
pat_ident(_, _, Some(p)) => walk_pat(p, it),
|
|
|
|
pat_rec(fields, _) | pat_struct(_, 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) | pat_region(s) => {
|
|
|
|
walk_pat(s, it)
|
|
|
|
}
|
|
|
|
pat_wild | pat_lit(_) | pat_range(_, _) | pat_ident(_, _, _) |
|
|
|
|
pat_enum(_, _) => {
|
|
|
|
}
|
2012-05-22 01:17:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
fn view_path_id(p: @view_path) -> node_id {
|
2012-08-06 14:34:08 -05:00
|
|
|
match p.node {
|
2012-08-31 13:19:07 -05:00
|
|
|
view_path_simple(_, _, _, id) | view_path_glob(_, id) |
|
2012-08-03 21:59:04 -05:00
|
|
|
view_path_list(_, _, id) => id
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-24 16:36:00 -05:00
|
|
|
/// Returns true if the given struct def is tuple-like; i.e. that its fields
|
|
|
|
/// are unnamed.
|
|
|
|
fn struct_def_is_tuple_like(struct_def: @ast::struct_def) -> bool {
|
|
|
|
struct_def.ctor_id.is_some()
|
|
|
|
}
|
|
|
|
|
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:
|