2011-08-21 23:44:41 -05:00
|
|
|
import codemap::span;
|
|
|
|
import ast::*;
|
|
|
|
|
2012-01-05 08:35:37 -06:00
|
|
|
fn respan<T: copy>(sp: span, t: T) -> spanned<T> {
|
2011-11-18 05:39:20 -06:00
|
|
|
ret {node: t, span: sp};
|
|
|
|
}
|
2011-08-21 23:44:41 -05:00
|
|
|
|
|
|
|
/* assuming that we're not in macro expansion */
|
|
|
|
fn mk_sp(lo: uint, hi: uint) -> span {
|
2012-02-04 19:37:24 -06:00
|
|
|
ret {lo: lo, hi: hi, expn_info: none};
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// make this a const, once the compiler supports it
|
|
|
|
fn dummy_sp() -> span { ret mk_sp(0u, 0u); }
|
|
|
|
|
2011-11-30 06:38:38 -06:00
|
|
|
fn path_name(p: @path) -> str { path_name_i(p.node.idents) }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn path_name_i(idents: [ident]) -> str { str::connect(idents, "::") }
|
2011-08-21 23:44:41 -05:00
|
|
|
|
|
|
|
fn local_def(id: node_id) -> def_id { ret {crate: local_crate, node: id}; }
|
|
|
|
|
2012-02-14 17:21:53 -06:00
|
|
|
fn stmt_id(s: stmt) -> node_id {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
fn def_id_of_def(d: def) -> def_id {
|
|
|
|
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-02-27 18:05:17 -06:00
|
|
|
def_use(id) |
|
2012-03-09 16:40:36 -06:00
|
|
|
def_class(id) | def_class_field(_, id) | def_class_method(_, id) { id }
|
2012-02-27 18:05:17 -06:00
|
|
|
|
2012-03-07 05:54:00 -06:00
|
|
|
def_arg(id, _) | def_local(id, _) | def_self(id) |
|
2012-02-27 18:05:17 -06:00
|
|
|
def_upvar(id, _, _) | def_binding(id) {
|
|
|
|
local_def(id)
|
|
|
|
}
|
|
|
|
|
2012-02-06 08:29:56 -06:00
|
|
|
def_prim_ty(_) { fail; }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-02 17:34:58 -05:00
|
|
|
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 "|"; }
|
|
|
|
lsl { ret "<<"; }
|
|
|
|
lsr { ret ">>"; }
|
|
|
|
asr { ret ">>>"; }
|
|
|
|
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 {
|
|
|
|
lsl { true }
|
|
|
|
lsr { true }
|
|
|
|
asr { true }
|
|
|
|
_ { false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-02 17:34:58 -05:00
|
|
|
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 "-"; }
|
2012-03-08 14:03:39 -06:00
|
|
|
addr_of { ret "&"; }
|
2011-08-21 23:44:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn is_path(e: @expr) -> bool {
|
2011-08-21 23:44:41 -05:00
|
|
|
ret alt e.node { expr_path(_) { true } _ { false } };
|
|
|
|
}
|
|
|
|
|
2011-12-07 14:06:12 -06:00
|
|
|
fn int_ty_to_str(t: int_ty) -> str {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-07 14:53:05 -06:00
|
|
|
fn int_ty_max(t: int_ty) -> u64 {
|
|
|
|
alt t {
|
2012-01-19 00:37:22 -06:00
|
|
|
ty_i8 { 0x80u64 }
|
|
|
|
ty_i16 { 0x800u64 }
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-07 14:06:12 -06:00
|
|
|
fn uint_ty_to_str(t: uint_ty) -> str {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-07 14:53:05 -06:00
|
|
|
fn uint_ty_max(t: uint_ty) -> u64 {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-07 14:06:12 -06:00
|
|
|
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-02-18 01:05:20 -06:00
|
|
|
let local = false;
|
2012-01-25 07:34:31 -06:00
|
|
|
let parent_enum : option<ident> = none;
|
2011-08-31 11:45:37 -05:00
|
|
|
for it: @item in m.items {
|
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-01-25 07:34:31 -06:00
|
|
|
item_enum(variants, _) {
|
2011-08-21 23:44:41 -05:00
|
|
|
for v: variant in variants {
|
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-01-25 07:34:31 -06:00
|
|
|
parent_enum = some(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-02-18 01:05:20 -06:00
|
|
|
let has_explicit_exports = false;
|
2011-08-31 11:45:37 -05:00
|
|
|
for vi: @view_item in m.view_items {
|
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;
|
|
|
|
for vp in vps {
|
|
|
|
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, _) {
|
|
|
|
if vec::len(*path) == 1u {
|
|
|
|
if i == path[0] { ret true; }
|
|
|
|
for id in ids {
|
|
|
|
if id.node.name == i { ret true; }
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fail "export of path-qualified list";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: glob-exports aren't supported yet.
|
|
|
|
_ {}
|
|
|
|
}
|
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
|
|
|
|
2011-10-20 17:26:26 -05:00
|
|
|
fn hash_def_id(&&id: def_id) -> uint {
|
2011-12-07 09:21:07 -06:00
|
|
|
(id.crate as uint << 16u) + (id.node as uint)
|
2011-10-20 17:26:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn eq_def_id(&&a: def_id, &&b: def_id) -> bool {
|
|
|
|
a == b
|
|
|
|
}
|
|
|
|
|
2012-01-05 08:35:37 -06:00
|
|
|
fn new_def_id_hash<T: copy>() -> std::map::hashmap<def_id, T> {
|
2011-10-20 17:26:26 -05:00
|
|
|
std::map::mk_hashmap(hash_def_id, eq_def_id)
|
|
|
|
}
|
|
|
|
|
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-01-31 19:05:20 -06: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
|
|
|
|
2011-12-02 06:42:51 -06:00
|
|
|
// FIXME this doesn't handle big integer/float literals correctly (nor does
|
|
|
|
// the rest of our literal handling)
|
2012-01-19 16:24:03 -06:00
|
|
|
enum const_val {
|
2012-01-19 19:56:05 -06:00
|
|
|
const_float(float),
|
|
|
|
const_int(i64),
|
|
|
|
const_uint(u64),
|
|
|
|
const_str(str),
|
2011-12-07 14:06:12 -06:00
|
|
|
}
|
2011-12-02 06:42:51 -06:00
|
|
|
|
2012-01-16 03:36:47 -06:00
|
|
|
// FIXME: issue #1417
|
2011-12-02 06:42:51 -06:00
|
|
|
fn eval_const_expr(e: @expr) -> const_val {
|
|
|
|
fn fromb(b: bool) -> const_val { const_int(b as i64) }
|
|
|
|
alt e.node {
|
2012-01-19 00:37:22 -06:00
|
|
|
expr_unary(neg, inner) {
|
2011-12-02 06:42:51 -06:00
|
|
|
alt eval_const_expr(inner) {
|
|
|
|
const_float(f) { const_float(-f) }
|
|
|
|
const_int(i) { const_int(-i) }
|
2011-12-07 14:06:12 -06:00
|
|
|
const_uint(i) { const_uint(-i) }
|
2012-01-30 23:00:57 -06:00
|
|
|
_ { fail "eval_const_expr: bad neg argument"; }
|
2011-12-02 06:42:51 -06:00
|
|
|
}
|
|
|
|
}
|
2012-01-19 00:37:22 -06:00
|
|
|
expr_unary(not, inner) {
|
2011-12-02 06:42:51 -06:00
|
|
|
alt eval_const_expr(inner) {
|
|
|
|
const_int(i) { const_int(!i) }
|
2011-12-07 14:06:12 -06:00
|
|
|
const_uint(i) { const_uint(!i) }
|
2012-01-30 23:00:57 -06:00
|
|
|
_ { fail "eval_const_expr: bad not argument"; }
|
2011-12-02 06:42:51 -06:00
|
|
|
}
|
2011-11-22 04:49:29 -06:00
|
|
|
}
|
2011-12-02 06:42:51 -06:00
|
|
|
expr_binary(op, a, b) {
|
|
|
|
alt (eval_const_expr(a), eval_const_expr(b)) {
|
|
|
|
(const_float(a), const_float(b)) {
|
|
|
|
alt op {
|
2012-01-19 00:37:22 -06:00
|
|
|
add { const_float(a + b) } subtract { const_float(a - b) }
|
|
|
|
mul { const_float(a * b) } div { const_float(a / b) }
|
|
|
|
rem { const_float(a % b) } eq { fromb(a == b) }
|
|
|
|
lt { fromb(a < b) } le { fromb(a <= b) } ne { fromb(a != b) }
|
|
|
|
ge { fromb(a >= b) } gt { fromb(a > b) }
|
2012-01-30 23:00:57 -06:00
|
|
|
_ { fail "eval_const_expr: can't apply this binop to floats"; }
|
2011-12-02 06:42:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
(const_int(a), const_int(b)) {
|
|
|
|
alt op {
|
2012-01-19 00:37:22 -06:00
|
|
|
add { const_int(a + b) } subtract { const_int(a - b) }
|
|
|
|
mul { const_int(a * b) } div { const_int(a / b) }
|
|
|
|
rem { const_int(a % b) } and | bitand { const_int(a & b) }
|
|
|
|
or | bitor { const_int(a | b) } bitxor { const_int(a ^ b) }
|
2012-01-25 06:19:32 -06:00
|
|
|
lsl { const_int(a << b) } lsr { const_int(a >> b) }
|
|
|
|
asr { const_int(a >>> b) }
|
2012-01-19 00:37:22 -06:00
|
|
|
eq { fromb(a == b) } lt { fromb(a < b) }
|
|
|
|
le { fromb(a <= b) } ne { fromb(a != b) }
|
|
|
|
ge { fromb(a >= b) } gt { fromb(a > b) }
|
2012-01-30 23:00:57 -06:00
|
|
|
_ { fail "eval_const_expr: can't apply this binop to ints"; }
|
2011-12-02 06:42:51 -06:00
|
|
|
}
|
|
|
|
}
|
2011-12-07 14:06:12 -06:00
|
|
|
(const_uint(a), const_uint(b)) {
|
|
|
|
alt op {
|
2012-01-19 00:37:22 -06:00
|
|
|
add { const_uint(a + b) } subtract { const_uint(a - b) }
|
|
|
|
mul { const_uint(a * b) } div { const_uint(a / b) }
|
|
|
|
rem { const_uint(a % b) } and | bitand { const_uint(a & b) }
|
|
|
|
or | bitor { const_uint(a | b) } bitxor { const_uint(a ^ b) }
|
2012-02-09 04:50:54 -06:00
|
|
|
lsl { const_int((a << b) as i64) }
|
|
|
|
lsr { const_int((a >> b) as i64) }
|
|
|
|
asr { const_int((a >>> b) as i64) }
|
2012-01-19 00:37:22 -06:00
|
|
|
eq { fromb(a == b) } lt { fromb(a < b) }
|
|
|
|
le { fromb(a <= b) } ne { fromb(a != b) }
|
|
|
|
ge { fromb(a >= b) } gt { fromb(a > b) }
|
2012-01-30 23:00:57 -06:00
|
|
|
_ { fail "eval_const_expr: can't apply this binop to uints"; }
|
2011-12-07 14:06:12 -06:00
|
|
|
}
|
|
|
|
}
|
2012-01-30 23:00:57 -06:00
|
|
|
_ { fail "eval_constr_expr: bad binary arguments"; }
|
2011-12-02 06:42:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
expr_lit(lit) { lit_to_const(lit) }
|
2012-01-30 23:00:57 -06:00
|
|
|
// Precondition?
|
|
|
|
_ {
|
|
|
|
fail "eval_const_expr: non-constant expression";
|
|
|
|
}
|
2011-11-22 04:49:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-02 06:42:51 -06:00
|
|
|
fn lit_to_const(lit: @lit) -> const_val {
|
|
|
|
alt lit.node {
|
|
|
|
lit_str(s) { const_str(s) }
|
2011-12-07 14:06:12 -06:00
|
|
|
lit_int(n, _) { const_int(n) }
|
|
|
|
lit_uint(n, _) { const_uint(n) }
|
2012-02-22 06:18:15 -06:00
|
|
|
lit_float(n, _) { const_float(option::get(float::from_str(n))) }
|
2012-01-19 00:37:22 -06:00
|
|
|
lit_nil { const_int(0i64) }
|
2011-12-02 06:42:51 -06:00
|
|
|
lit_bool(b) { const_int(b as i64) }
|
2011-11-22 04:49:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-02 06:42:51 -06:00
|
|
|
fn compare_const_vals(a: const_val, b: const_val) -> int {
|
|
|
|
alt (a, b) {
|
2012-01-29 20:33:08 -06:00
|
|
|
(const_int(a), const_int(b)) {
|
|
|
|
if a == b {
|
|
|
|
0
|
|
|
|
} else if a < b {
|
|
|
|
-1
|
|
|
|
} else {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(const_uint(a), const_uint(b)) {
|
|
|
|
if a == b {
|
|
|
|
0
|
|
|
|
} else if a < b {
|
|
|
|
-1
|
|
|
|
} else {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(const_float(a), const_float(b)) {
|
|
|
|
if a == b {
|
|
|
|
0
|
|
|
|
} else if a < b {
|
|
|
|
-1
|
|
|
|
} else {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(const_str(a), const_str(b)) {
|
|
|
|
if a == b {
|
|
|
|
0
|
|
|
|
} else if a < b {
|
|
|
|
-1
|
|
|
|
} else {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
2012-01-30 23:00:57 -06:00
|
|
|
_ {
|
|
|
|
fail "compare_const_vals: ill-typed comparison";
|
|
|
|
}
|
2011-12-02 06:42:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compare_lit_exprs(a: @expr, b: @expr) -> int {
|
|
|
|
compare_const_vals(eval_const_expr(a), eval_const_expr(b))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lit_expr_eq(a: @expr, b: @expr) -> bool { compare_lit_exprs(a, b) == 0 }
|
|
|
|
|
|
|
|
fn lit_eq(a: @lit, b: @lit) -> bool {
|
|
|
|
compare_const_vals(lit_to_const(a), lit_to_const(b)) == 0
|
2011-11-22 04:49:29 -06:00
|
|
|
}
|
|
|
|
|
2012-01-14 18:05:07 -06:00
|
|
|
fn ident_to_path(s: span, i: ident) -> @path {
|
|
|
|
@respan(s, {global: false, idents: [i], types: []})
|
|
|
|
}
|
|
|
|
|
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-01-30 23:00:57 -06:00
|
|
|
if is_unguarded(a) { some(a.pats) } else { none }
|
|
|
|
}
|
|
|
|
|
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-02-07 18:40:07 -06:00
|
|
|
pure fn class_item_ident(ci: @class_item) -> ident {
|
|
|
|
alt ci.node.decl {
|
|
|
|
instance_var(i,_,_,_) { i }
|
|
|
|
class_method(it) { it.ident }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-01 21:37:52 -06:00
|
|
|
impl inlined_item_methods for inlined_item {
|
|
|
|
fn ident() -> ident {
|
|
|
|
alt self {
|
|
|
|
ii_item(i) { i.ident }
|
|
|
|
ii_method(_, m) { m.ident }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn id() -> ast::node_id {
|
|
|
|
alt self {
|
|
|
|
ii_item(i) { i.id }
|
|
|
|
ii_method(_, m) { m.id }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn accept<E>(e: E, v: visit::vt<E>) {
|
|
|
|
alt self {
|
|
|
|
ii_item(i) { v.visit_item(i, e, v) }
|
|
|
|
ii_method(_, m) { visit::visit_method_helper(m, e, v) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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:
|