rust/src/libsyntax/fold.rs

753 lines
28 KiB
Rust
Raw Normal View History

2012-03-22 19:21:34 -05:00
import codemap::span;
2011-06-20 19:25:49 -05:00
import ast::*;
export ast_fold_precursor;
export ast_fold;
export default_ast_fold;
export make_fold;
export noop_fold_crate;
export noop_fold_item;
export noop_fold_expr;
export noop_fold_pat;
export noop_fold_mod;
export noop_fold_ty;
export noop_fold_block;
export wrap;
2012-03-02 16:36:22 -06:00
export fold_ty_param;
export fold_ty_params;
export fold_fn_decl;
export extensions;
2011-06-20 19:25:49 -05:00
trait ast_fold {
2012-05-21 20:28:39 -05:00
fn fold_crate(crate) -> crate;
fn fold_crate_directive(&&@crate_directive) -> @crate_directive;
fn fold_view_item(&&@view_item) -> @view_item;
fn fold_foreign_item(&&@foreign_item) -> @foreign_item;
2012-07-06 14:17:34 -05:00
fn fold_item(&&@item) -> option<@item>;
2012-05-21 20:28:39 -05:00
fn fold_class_item(&&@class_member) -> @class_member;
fn fold_item_underscore(item_) -> item_;
fn fold_method(&&@method) -> @method;
fn fold_block(blk) -> blk;
fn fold_stmt(&&@stmt) -> @stmt;
fn fold_arm(arm) -> arm;
fn fold_pat(&&@pat) -> @pat;
fn fold_decl(&&@decl) -> @decl;
fn fold_expr(&&@expr) -> @expr;
fn fold_ty(&&@ty) -> @ty;
fn fold_mod(_mod) -> _mod;
fn fold_foreign_mod(foreign_mod) -> foreign_mod;
2012-05-21 20:28:39 -05:00
fn fold_variant(variant) -> variant;
fn fold_ident(&&ident) -> ident;
fn fold_path(&&@path) -> @path;
fn fold_local(&&@local) -> @local;
fn map_exprs(fn@(&&@expr) -> @expr, ~[@expr]) -> ~[@expr];
2012-05-21 20:28:39 -05:00
fn new_id(node_id) -> node_id;
fn new_span(span) -> span;
}
2011-06-20 19:25:49 -05:00
// We may eventually want to be able to fold over type parameters, too
2012-05-21 20:28:39 -05:00
type ast_fold_precursor = @{
2011-07-27 07:19:39 -05:00
//unlike the others, item_ is non-trivial
2012-05-21 20:28:39 -05:00
fold_crate: fn@(crate_, span, ast_fold) -> (crate_, span),
fold_crate_directive: fn@(crate_directive_, span,
ast_fold) -> (crate_directive_, span),
fold_view_item: fn@(view_item_, ast_fold) -> view_item_,
fold_foreign_item: fn@(&&@foreign_item, ast_fold) -> @foreign_item,
2012-07-06 14:17:34 -05:00
fold_item: fn@(&&@item, ast_fold) -> option<@item>,
2012-05-21 20:28:39 -05:00
fold_class_item: fn@(&&@class_member, ast_fold) -> @class_member,
fold_item_underscore: fn@(item_, ast_fold) -> item_,
fold_method: fn@(&&@method, ast_fold) -> @method,
fold_block: fn@(blk_, span, ast_fold) -> (blk_, span),
fold_stmt: fn@(stmt_, span, ast_fold) -> (stmt_, span),
fold_arm: fn@(arm, ast_fold) -> arm,
fold_pat: fn@(pat_, span, ast_fold) -> (pat_, span),
fold_decl: fn@(decl_, span, ast_fold) -> (decl_, span),
fold_expr: fn@(expr_, span, ast_fold) -> (expr_, span),
fold_ty: fn@(ty_, span, ast_fold) -> (ty_, span),
fold_mod: fn@(_mod, ast_fold) -> _mod,
fold_foreign_mod: fn@(foreign_mod, ast_fold) -> foreign_mod,
2012-05-21 20:28:39 -05:00
fold_variant: fn@(variant_, span, ast_fold) -> (variant_, span),
fold_ident: fn@(&&ident, ast_fold) -> ident,
fold_path: fn@(path, ast_fold) -> path,
fold_local: fn@(local_, span, ast_fold) -> (local_, span),
map_exprs: fn@(fn@(&&@expr) -> @expr, ~[@expr]) -> ~[@expr],
2012-05-21 20:28:39 -05:00
new_id: fn@(node_id) -> node_id,
new_span: fn@(span) -> span};
2011-06-20 19:25:49 -05:00
/* some little folds that probably aren't useful to have in ast_fold itself*/
//used in noop_fold_item and noop_fold_crate and noop_fold_crate_directive
fn fold_meta_item_(&&mi: @meta_item, fld: ast_fold) -> @meta_item {
2012-08-01 19:30:05 -05:00
return @{node:
2012-08-06 14:34:08 -05:00
match mi.node {
2012-08-03 21:59:04 -05:00
meta_word(id) => meta_word(fld.fold_ident(id)),
meta_list(id, mis) => {
2012-06-30 18:19:07 -05:00
let fold_meta_item = |x|fold_meta_item_(x, fld);
meta_list(/* FIXME: (#2543) */ copy id,
2012-06-07 23:53:47 -05:00
vec::map(mis, fold_meta_item))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
meta_name_value(id, s) => {
meta_name_value(fld.fold_ident(id),
/* FIXME (#2543) */ copy s)
2011-07-27 07:19:39 -05:00
}
},
span: fld.new_span(mi.span)};
2011-06-20 19:25:49 -05:00
}
//used in noop_fold_item and noop_fold_crate
fn fold_attribute_(at: attribute, fld: ast_fold) ->
2011-07-27 07:19:39 -05:00
attribute {
2012-08-01 19:30:05 -05:00
return {node: {style: at.node.style,
value: *fold_meta_item_(@at.node.value, fld),
is_sugared_doc: at.node.is_sugared_doc },
span: fld.new_span(at.span)};
2011-06-20 19:25:49 -05:00
}
//used in noop_fold_foreign_item and noop_fold_fn_decl
fn fold_arg_(a: arg, fld: ast_fold) -> arg {
2012-08-01 19:30:05 -05:00
return {mode: a.mode,
ty: fld.fold_ty(a.ty),
ident: fld.fold_ident(a.ident),
id: fld.new_id(a.id)};
2011-06-20 19:25:49 -05:00
}
//used in noop_fold_expr, and possibly elsewhere in the future
fn fold_mac_(m: mac, fld: ast_fold) -> mac {
2012-08-01 19:30:05 -05:00
return {node:
2012-08-06 14:34:08 -05:00
match m.node {
2012-08-03 21:59:04 -05:00
mac_invoc(pth, arg, body) => {
mac_invoc(fld.fold_path(pth),
option::map(arg, |x| fld.fold_expr(x)), body)
}
2012-08-03 21:59:04 -05:00
mac_invoc_tt(pth, tt) => m.node,
mac_ellipsis => mac_ellipsis,
mac_aq(_,_) => /* FIXME (#2543) */ copy m.node,
mac_var(_) => /* FIXME (#2543) */ copy m.node,
},
span: fld.new_span(m.span)};
}
fn fold_fn_decl(decl: ast::fn_decl, fld: ast_fold) -> ast::fn_decl {
2012-08-01 19:30:05 -05:00
return {inputs: vec::map(decl.inputs, |x| fold_arg_(x, fld) ),
output: fld.fold_ty(decl.output),
purity: decl.purity,
cf: decl.cf}
}
2011-06-20 19:25:49 -05:00
fn fold_ty_param_bound(tpb: ty_param_bound, fld: ast_fold) -> ty_param_bound {
2012-08-06 14:34:08 -05:00
match tpb {
2012-08-03 21:59:04 -05:00
bound_copy | bound_send | bound_const | bound_owned => tpb,
bound_trait(ty) => bound_trait(fld.fold_ty(ty))
}
}
fn fold_ty_param(tp: ty_param, fld: ast_fold) -> ty_param {
{ident: /* FIXME (#2543) */ copy tp.ident,
id: fld.new_id(tp.id),
2012-06-30 18:19:07 -05:00
bounds: @vec::map(*tp.bounds, |x| fold_ty_param_bound(x, fld) )}
}
fn fold_ty_params(tps: ~[ty_param], fld: ast_fold) -> ~[ty_param] {
2012-06-30 18:19:07 -05:00
vec::map(tps, |x| fold_ty_param(x, fld) )
}
fn noop_fold_crate(c: crate_, fld: ast_fold) -> crate_ {
2012-06-30 18:19:07 -05:00
let fold_meta_item = |x| fold_meta_item_(x, fld);
let fold_attribute = |x| fold_attribute_(x, fld);
2011-06-20 19:25:49 -05:00
2012-08-01 19:30:05 -05:00
return {
directives: vec::map(c.directives, |x| fld.fold_crate_directive(x)),
module: fld.fold_mod(c.module),
attrs: vec::map(c.attrs, fold_attribute),
config: vec::map(c.config, fold_meta_item)
};
2011-06-20 19:25:49 -05:00
}
fn noop_fold_crate_directive(cd: crate_directive_, fld: ast_fold) ->
2011-07-27 07:19:39 -05:00
crate_directive_ {
2012-08-06 14:34:08 -05:00
return match cd {
2012-08-03 21:59:04 -05:00
cdir_src_mod(id, attrs) => {
cdir_src_mod(fld.fold_ident(id), /* FIXME (#2543) */ copy attrs)
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
cdir_dir_mod(id, cds, attrs) => {
cdir_dir_mod(fld.fold_ident(id),
vec::map(cds, |x| fld.fold_crate_directive(x)),
/* FIXME (#2543) */ copy attrs)
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
cdir_view_item(vi) => cdir_view_item(fld.fold_view_item(vi)),
cdir_syntax(_) => copy cd
2011-07-27 07:19:39 -05:00
}
2011-06-20 19:25:49 -05:00
}
fn noop_fold_view_item(vi: view_item_, _fld: ast_fold) -> view_item_ {
2012-08-01 19:30:05 -05:00
return /* FIXME (#2543) */ copy vi;
2011-06-20 19:25:49 -05:00
}
fn noop_fold_foreign_item(&&ni: @foreign_item, fld: ast_fold)
-> @foreign_item {
2012-06-30 18:19:07 -05:00
let fold_arg = |x| fold_arg_(x, fld);
let fold_attribute = |x| fold_attribute_(x, fld);
2011-07-27 07:19:39 -05:00
2012-08-01 19:30:05 -05:00
return @{ident: fld.fold_ident(ni.ident),
attrs: vec::map(ni.attrs, fold_attribute),
2011-07-27 07:19:39 -05:00
node:
2012-08-06 14:34:08 -05:00
match ni.node {
2012-08-03 21:59:04 -05:00
foreign_item_fn(fdec, typms) => {
foreign_item_fn({inputs: vec::map(fdec.inputs, fold_arg),
2011-07-27 07:19:39 -05:00
output: fld.fold_ty(fdec.output),
purity: fdec.purity,
cf: fdec.cf},
fold_ty_params(typms, fld))
2011-07-27 07:19:39 -05:00
}
},
id: fld.new_id(ni.id),
span: fld.new_span(ni.span)};
2011-06-20 19:25:49 -05:00
}
2012-07-06 14:17:34 -05:00
fn noop_fold_item(&&i: @item, fld: ast_fold) -> option<@item> {
2012-06-30 18:19:07 -05:00
let fold_attribute = |x| fold_attribute_(x, fld);
2011-06-20 19:25:49 -05:00
2012-08-01 19:30:05 -05:00
return some(@{ident: fld.fold_ident(i.ident),
2012-07-06 14:17:34 -05:00
attrs: vec::map(i.attrs, fold_attribute),
id: fld.new_id(i.id),
node: fld.fold_item_underscore(i.node),
vis: i.vis,
span: fld.new_span(i.span)});
2011-06-20 19:25:49 -05:00
}
fn noop_fold_class_item(&&ci: @class_member, fld: ast_fold)
-> @class_member {
2012-08-06 14:34:08 -05:00
@{node: match ci.node {
2012-08-03 21:59:04 -05:00
instance_var(ident, t, cm, id, p) => {
instance_var(/* FIXME (#2543) */ copy ident,
fld.fold_ty(t), cm, id, p)
}
2012-08-03 21:59:04 -05:00
class_method(m) => class_method(fld.fold_method(m))
},
span: ci.span}
}
fn noop_fold_item_underscore(i: item_, fld: ast_fold) -> item_ {
2012-08-06 14:34:08 -05:00
return match i {
2012-08-03 21:59:04 -05:00
item_const(t, e) => item_const(fld.fold_ty(t), fld.fold_expr(e)),
item_fn(decl, typms, body) => {
item_fn(fold_fn_decl(decl, fld),
fold_ty_params(typms, fld),
fld.fold_block(body))
}
2012-08-03 21:59:04 -05:00
item_mod(m) => item_mod(fld.fold_mod(m)),
item_foreign_mod(nm) => item_foreign_mod(fld.fold_foreign_mod(nm)),
item_ty(t, typms) => item_ty(fld.fold_ty(t),
fold_ty_params(typms, fld)),
item_enum(variants, typms) => {
item_enum(vec::map(variants, |x| fld.fold_variant(x)),
fold_ty_params(typms, fld))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
item_class(typms, traits, items, m_ctor, m_dtor) => {
let resulting_optional_constructor;
2012-08-06 14:34:08 -05:00
match m_ctor {
none => {
resulting_optional_constructor = none;
}
some(constructor) => {
resulting_optional_constructor = some({
node: {
body: fld.fold_block(constructor.node.body),
dec: fold_fn_decl(constructor.node.dec, fld),
id: fld.new_id(constructor.node.id)
with constructor.node
}
with constructor
});
}
}
2012-06-30 18:19:07 -05:00
let dtor = do option::map(m_dtor) |dtor| {
let dtor_body = fld.fold_block(dtor.node.body);
let dtor_id = fld.new_id(dtor.node.id);
{node: {body: dtor_body,
id: dtor_id with dtor.node}
with dtor}};
item_class(
/* FIXME (#2543) */ copy typms,
vec::map(traits, |p| fold_trait_ref(p, fld)),
vec::map(items, |x| fld.fold_class_item(x)),
resulting_optional_constructor,
dtor)
}
2012-08-03 21:59:04 -05:00
item_impl(tps, ifce, ty, methods) => {
item_impl(fold_ty_params(tps, fld),
ifce.map(|p| fold_trait_ref(p, fld)),
fld.fold_ty(ty),
vec::map(methods, |x| fld.fold_method(x)))
}
2012-08-03 21:59:04 -05:00
item_trait(tps, traits, methods) => {
item_trait(fold_ty_params(tps, fld),
vec::map(traits, |p| fold_trait_ref(p, fld)),
/* FIXME (#2543) */ copy methods)
}
2012-08-03 21:59:04 -05:00
item_mac(m) => {
// FIXME #2888: we might actually want to do something here.
item_mac(m)
}
2011-07-27 07:19:39 -05:00
};
2011-06-20 19:25:49 -05:00
}
fn fold_trait_ref(&&p: @trait_ref, fld: ast_fold) -> @trait_ref {
@{path: fld.fold_path(p.path), ref_id: fld.new_id(p.ref_id),
impl_id: fld.new_id(p.impl_id)}
}
fn noop_fold_method(&&m: @method, fld: ast_fold) -> @method {
2012-08-01 19:30:05 -05:00
return @{ident: fld.fold_ident(m.ident),
attrs: /* FIXME (#2543) */ copy m.attrs,
tps: fold_ty_params(m.tps, fld),
2012-07-30 18:33:02 -05:00
self_ty: m.self_ty,
decl: fold_fn_decl(m.decl, fld),
body: fld.fold_block(m.body),
id: fld.new_id(m.id),
span: fld.new_span(m.span),
self_id: fld.new_id(m.self_id),
vis: m.vis};
2011-06-20 19:25:49 -05:00
}
fn noop_fold_block(b: blk_, fld: ast_fold) -> blk_ {
2012-08-01 19:30:05 -05:00
return {view_items: vec::map(b.view_items, |x| fld.fold_view_item(x)),
stmts: vec::map(b.stmts, |x| fld.fold_stmt(x)),
expr: option::map(b.expr, |x| fld.fold_expr(x)),
id: fld.new_id(b.id),
rules: b.rules};
2011-06-20 19:25:49 -05:00
}
fn noop_fold_stmt(s: stmt_, fld: ast_fold) -> stmt_ {
2012-08-06 14:34:08 -05:00
return match s {
2012-08-03 21:59:04 -05:00
stmt_decl(d, nid) => stmt_decl(fld.fold_decl(d), fld.new_id(nid)),
stmt_expr(e, nid) => stmt_expr(fld.fold_expr(e), fld.new_id(nid)),
stmt_semi(e, nid) => stmt_semi(fld.fold_expr(e), fld.new_id(nid))
};
2011-06-20 19:25:49 -05:00
}
fn noop_fold_arm(a: arm, fld: ast_fold) -> arm {
2012-08-01 19:30:05 -05:00
return {pats: vec::map(a.pats, |x| fld.fold_pat(x)),
guard: option::map(a.guard, |x| fld.fold_expr(x)),
body: fld.fold_block(a.body)};
2011-06-20 19:25:49 -05:00
}
fn noop_fold_pat(p: pat_, fld: ast_fold) -> pat_ {
2012-08-06 14:34:08 -05:00
return match p {
2012-08-03 21:59:04 -05:00
pat_wild => pat_wild,
pat_ident(binding_mode, pth, sub) => {
pat_ident(binding_mode,
fld.fold_path(pth),
option::map(sub, |x| fld.fold_pat(x)))
}
2012-08-03 21:59:04 -05:00
pat_lit(e) => pat_lit(fld.fold_expr(e)),
pat_enum(pth, pats) => {
pat_enum(fld.fold_path(pth), option::map(pats,
|pats| vec::map(pats, |x| fld.fold_pat(x))))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
pat_rec(fields, etc) => {
let mut fs = ~[];
2012-06-30 18:19:07 -05:00
for fields.each |f| {
vec::push(fs,
{ident: /* FIXME (#2543) */ copy f.ident,
pat: fld.fold_pat(f.pat)});
2011-07-11 07:13:20 -05:00
}
pat_rec(fs, etc)
2011-07-27 07:19:39 -05:00
}
pat_struct(pth, fields, etc) => {
let pth_ = fld.fold_path(pth);
let mut fs = ~[];
for fields.each |f| {
vec::push(fs,
{ident: /* FIXME (#2543) */ copy f.ident,
pat: fld.fold_pat(f.pat)});
}
pat_struct(pth_, fs, etc)
}
2012-08-03 21:59:04 -05:00
pat_tup(elts) => pat_tup(vec::map(elts, |x| fld.fold_pat(x))),
pat_box(inner) => pat_box(fld.fold_pat(inner)),
pat_uniq(inner) => pat_uniq(fld.fold_pat(inner)),
pat_range(e1, e2) => {
pat_range(fld.fold_expr(e1), fld.fold_expr(e2))
}
2011-07-27 07:19:39 -05:00
};
2011-06-20 19:25:49 -05:00
}
fn noop_fold_decl(d: decl_, fld: ast_fold) -> decl_ {
2012-08-06 14:34:08 -05:00
match d {
2012-08-03 21:59:04 -05:00
decl_local(ls) => decl_local(vec::map(ls, |x| fld.fold_local(x))),
2012-08-06 14:34:08 -05:00
decl_item(it) => match fld.fold_item(it) {
2012-08-03 21:59:04 -05:00
some(it_folded) => decl_item(it_folded),
none => decl_local(~[])
2012-07-06 14:17:34 -05:00
}
}
2011-06-20 19:25:49 -05:00
}
fn wrap<T>(f: fn@(T, ast_fold) -> T)
-> fn@(T, span, ast_fold) -> (T, span)
{
2012-08-01 19:30:05 -05:00
return fn@(x: T, s: span, fld: ast_fold) -> (T, span) {
(f(x, fld), s)
}
}
fn noop_fold_expr(e: expr_, fld: ast_fold) -> expr_ {
fn fold_field_(field: field, fld: ast_fold) -> field {
2012-08-01 19:30:05 -05:00
return {node:
{mutbl: field.node.mutbl,
2011-07-27 07:19:39 -05:00
ident: fld.fold_ident(field.node.ident),
expr: fld.fold_expr(field.node.expr)},
span: fld.new_span(field.span)};
2011-06-20 19:25:49 -05:00
}
2012-06-30 18:19:07 -05:00
let fold_field = |x| fold_field_(x, fld);
2012-06-30 18:19:07 -05:00
let fold_mac = |x| fold_mac_(x, fld);
2011-06-20 19:25:49 -05:00
2012-08-06 14:34:08 -05:00
return match e {
2012-08-03 21:59:04 -05:00
expr_vstore(e, v) => {
2012-04-09 19:32:49 -05:00
expr_vstore(fld.fold_expr(e), v)
}
2012-08-03 21:59:04 -05:00
expr_vec(exprs, mutt) => {
expr_vec(fld.map_exprs(|x| fld.fold_expr(x), exprs), mutt)
2011-07-27 07:19:39 -05:00
}
expr_repeat(expr, count, mutt) =>
expr_repeat(fld.fold_expr(expr), fld.fold_expr(count), mutt),
2012-08-03 21:59:04 -05:00
expr_rec(fields, maybe_expr) => {
expr_rec(vec::map(fields, fold_field),
option::map(maybe_expr, |x| fld.fold_expr(x)))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_tup(elts) => expr_tup(vec::map(elts, |x| fld.fold_expr(x))),
expr_call(f, args, blk) => {
expr_call(fld.fold_expr(f),
fld.map_exprs(|x| fld.fold_expr(x), args),
blk)
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_binary(binop, lhs, rhs) => {
2011-06-20 19:25:49 -05:00
expr_binary(binop, fld.fold_expr(lhs), fld.fold_expr(rhs))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_unary(binop, ohs) => expr_unary(binop, fld.fold_expr(ohs)),
expr_loop_body(f) => expr_loop_body(fld.fold_expr(f)),
expr_do_body(f) => expr_do_body(fld.fold_expr(f)),
expr_lit(_) => copy e,
expr_cast(expr, ty) => expr_cast(fld.fold_expr(expr), ty),
expr_addr_of(m, ohs) => expr_addr_of(m, fld.fold_expr(ohs)),
expr_if(cond, tr, fl) => {
expr_if(fld.fold_expr(cond), fld.fold_block(tr),
option::map(fl, |x| fld.fold_expr(x)))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_while(cond, body) => {
2011-06-20 19:25:49 -05:00
expr_while(fld.fold_expr(cond), fld.fold_block(body))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_loop(body) => {
expr_loop(fld.fold_block(body))
}
2012-08-07 15:35:51 -05:00
expr_match(expr, arms, mode) => {
expr_match(fld.fold_expr(expr),
vec::map(arms, |x| fld.fold_arm(x)), mode)
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_fn(proto, decl, body, captures) => {
expr_fn(proto, fold_fn_decl(decl, fld),
fld.fold_block(body),
2012-06-30 18:19:07 -05:00
@((*captures).map(|cap_item| {
@({id: fld.new_id((*cap_item).id)
with *cap_item})})))
}
2012-08-03 21:59:04 -05:00
expr_fn_block(decl, body, captures) => {
2012-05-04 14:33:04 -05:00
expr_fn_block(fold_fn_decl(decl, fld), fld.fold_block(body),
2012-06-30 18:19:07 -05:00
@((*captures).map(|cap_item| {
@({id: fld.new_id((*cap_item).id)
with *cap_item})})))
}
2012-08-03 21:59:04 -05:00
expr_block(blk) => expr_block(fld.fold_block(blk)),
expr_move(el, er) => {
2011-06-20 19:25:49 -05:00
expr_move(fld.fold_expr(el), fld.fold_expr(er))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_copy(e) => expr_copy(fld.fold_expr(e)),
expr_unary_move(e) => expr_unary_move(fld.fold_expr(e)),
expr_assign(el, er) => {
2011-06-20 19:25:49 -05:00
expr_assign(fld.fold_expr(el), fld.fold_expr(er))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_swap(el, er) => {
expr_swap(fld.fold_expr(el), fld.fold_expr(er))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_assign_op(op, el, er) => {
2011-06-20 19:25:49 -05:00
expr_assign_op(op, fld.fold_expr(el), fld.fold_expr(er))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_field(el, id, tys) => {
expr_field(fld.fold_expr(el), fld.fold_ident(id),
vec::map(tys, |x| fld.fold_ty(x)))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_index(el, er) => {
2011-06-20 19:25:49 -05:00
expr_index(fld.fold_expr(el), fld.fold_expr(er))
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
expr_path(pth) => expr_path(fld.fold_path(pth)),
expr_fail(e) => expr_fail(option::map(e, |x| fld.fold_expr(x))),
expr_break | expr_again => copy e,
expr_ret(e) => expr_ret(option::map(e, |x| fld.fold_expr(x))),
expr_log(i, lv, e) => expr_log(i, fld.fold_expr(lv),
fld.fold_expr(e)),
expr_assert(e) => expr_assert(fld.fold_expr(e)),
expr_mac(mac) => expr_mac(fold_mac(mac)),
expr_struct(path, fields, maybe_expr) => {
expr_struct(fld.fold_path(path),
vec::map(fields, fold_field),
option::map(maybe_expr, |x| fld.fold_expr(x)))
}
}
2011-06-20 19:25:49 -05:00
}
2012-02-01 22:21:01 -06:00
fn noop_fold_ty(t: ty_, fld: ast_fold) -> ty_ {
2012-06-30 18:19:07 -05:00
let fold_mac = |x| fold_mac_(x, fld);
2012-02-01 22:21:01 -06:00
fn fold_mt(mt: mt, fld: ast_fold) -> mt {
{ty: fld.fold_ty(mt.ty), mutbl: mt.mutbl}
2012-02-01 22:21:01 -06:00
}
fn fold_field(f: ty_field, fld: ast_fold) -> ty_field {
{node: {ident: fld.fold_ident(f.node.ident),
mt: fold_mt(f.node.mt, fld)},
span: fld.new_span(f.span)}
}
2012-08-06 14:34:08 -05:00
match t {
2012-08-03 21:59:04 -05:00
ty_nil | ty_bot | ty_infer => copy t,
ty_box(mt) => ty_box(fold_mt(mt, fld)),
ty_uniq(mt) => ty_uniq(fold_mt(mt, fld)),
ty_vec(mt) => ty_vec(fold_mt(mt, fld)),
ty_ptr(mt) => ty_ptr(fold_mt(mt, fld)),
ty_rptr(region, mt) => ty_rptr(region, fold_mt(mt, fld)),
ty_rec(fields) => ty_rec(vec::map(fields, |f| fold_field(f, fld))),
ty_fn(proto, bounds, decl) =>
ty_fn(proto, @vec::map(*bounds,
|x| fold_ty_param_bound(x, fld)),
fold_fn_decl(decl, fld)),
2012-08-03 21:59:04 -05:00
ty_tup(tys) => ty_tup(vec::map(tys, |ty| fld.fold_ty(ty))),
ty_path(path, id) => ty_path(fld.fold_path(path), fld.new_id(id)),
ty_fixed_length(t, vs) => ty_fixed_length(fld.fold_ty(t), vs),
ty_mac(mac) => ty_mac(fold_mac(mac))
2012-02-01 22:21:01 -06:00
}
2011-06-20 19:25:49 -05:00
}
// ...nor do modules
fn noop_fold_mod(m: _mod, fld: ast_fold) -> _mod {
2012-08-01 19:30:05 -05:00
return {view_items: vec::map(m.view_items, |x| fld.fold_view_item(x)),
items: vec::filter_map(m.items, |x| fld.fold_item(x))};
2011-06-20 19:25:49 -05:00
}
fn noop_fold_foreign_mod(nm: foreign_mod, fld: ast_fold) -> foreign_mod {
2012-08-01 19:30:05 -05:00
return {view_items: vec::map(nm.view_items, |x| fld.fold_view_item(x)),
items: vec::map(nm.items, |x| fld.fold_foreign_item(x))}
2011-06-20 19:25:49 -05:00
}
fn noop_fold_variant(v: variant_, fld: ast_fold) -> variant_ {
fn fold_variant_arg_(va: variant_arg, fld: ast_fold) -> variant_arg {
2012-08-01 19:30:05 -05:00
return {ty: fld.fold_ty(va.ty), id: fld.new_id(va.id)};
2011-06-20 19:25:49 -05:00
}
2012-06-30 18:19:07 -05:00
let fold_variant_arg = |x| fold_variant_arg_(x, fld);
let args = vec::map(v.args, fold_variant_arg);
2012-06-30 18:19:07 -05:00
let fold_attribute = |x| fold_attribute_(x, fld);
let attrs = vec::map(v.attrs, fold_attribute);
2012-08-06 14:34:08 -05:00
let de = match v.disr_expr {
2012-08-03 21:59:04 -05:00
some(e) => some(fld.fold_expr(e)),
none => none
};
2012-08-01 19:30:05 -05:00
return {name: /* FIXME (#2543) */ copy v.name,
attrs: attrs,
args: args, id: fld.new_id(v.id),
disr_expr: de,
vis: v.vis};
2011-06-20 19:25:49 -05:00
}
2012-06-07 23:53:47 -05:00
fn noop_fold_ident(&&i: ident, _fld: ast_fold) -> ident {
2012-08-01 19:30:05 -05:00
return /* FIXME (#2543) */ copy i;
2012-06-07 23:53:47 -05:00
}
2011-06-20 19:25:49 -05:00
2012-04-23 06:04:46 -05:00
fn noop_fold_path(&&p: path, fld: ast_fold) -> path {
2012-08-01 19:30:05 -05:00
return {span: fld.new_span(p.span), global: p.global,
idents: vec::map(p.idents, |x| fld.fold_ident(x)),
rp: p.rp,
types: vec::map(p.types, |x| fld.fold_ty(x))};
2011-06-20 19:25:49 -05:00
}
fn noop_fold_local(l: local_, fld: ast_fold) -> local_ {
2012-08-01 19:30:05 -05:00
return {is_mutbl: l.is_mutbl,
ty: fld.fold_ty(l.ty),
pat: fld.fold_pat(l.pat),
init:
2012-08-06 14:34:08 -05:00
match l.init {
2012-08-03 21:59:04 -05:00
option::none::<initializer> => l.init,
option::some::<initializer>(init) => {
option::some::<initializer>({op: init.op,
expr: fld.fold_expr(init.expr)})
}
},
id: fld.new_id(l.id)};
2011-06-20 19:25:49 -05:00
}
/* temporarily eta-expand because of a compiler bug with using `fn<T>` as a
2011-07-21 18:47:47 -05:00
value */
fn noop_map_exprs(f: fn@(&&@expr) -> @expr, es: ~[@expr]) -> ~[@expr] {
2012-08-01 19:30:05 -05:00
return vec::map(es, f);
2011-07-21 18:47:47 -05:00
}
2012-08-01 19:30:05 -05:00
fn noop_id(i: node_id) -> node_id { return i; }
2012-08-01 19:30:05 -05:00
fn noop_span(sp: span) -> span { return sp; }
2012-05-21 20:28:39 -05:00
fn default_ast_fold() -> ast_fold_precursor {
2012-08-01 19:30:05 -05:00
return @{fold_crate: wrap(noop_fold_crate),
fold_crate_directive: wrap(noop_fold_crate_directive),
2011-07-27 07:19:39 -05:00
fold_view_item: noop_fold_view_item,
fold_foreign_item: noop_fold_foreign_item,
2011-07-27 07:19:39 -05:00
fold_item: noop_fold_item,
fold_class_item: noop_fold_class_item,
2011-07-27 07:19:39 -05:00
fold_item_underscore: noop_fold_item_underscore,
fold_method: noop_fold_method,
fold_block: wrap(noop_fold_block),
fold_stmt: wrap(noop_fold_stmt),
2011-07-27 07:19:39 -05:00
fold_arm: noop_fold_arm,
fold_pat: wrap(noop_fold_pat),
fold_decl: wrap(noop_fold_decl),
fold_expr: wrap(noop_fold_expr),
fold_ty: wrap(noop_fold_ty),
2011-07-27 07:19:39 -05:00
fold_mod: noop_fold_mod,
fold_foreign_mod: noop_fold_foreign_mod,
fold_variant: wrap(noop_fold_variant),
2011-07-27 07:19:39 -05:00
fold_ident: noop_fold_ident,
2012-04-23 06:04:46 -05:00
fold_path: noop_fold_path,
fold_local: wrap(noop_fold_local),
map_exprs: noop_map_exprs,
new_id: noop_id,
new_span: noop_span};
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
impl of ast_fold for ast_fold_precursor {
2011-06-20 19:25:49 -05:00
/* naturally, a macro to write these would be nice */
2012-05-21 20:28:39 -05:00
fn fold_crate(c: crate) -> crate {
let (n, s) = self.fold_crate(c.node, c.span, self as ast_fold);
2012-08-01 19:30:05 -05:00
return {node: n, span: self.new_span(s)};
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_crate_directive(&&c: @crate_directive) -> @crate_directive {
let (n, s) = self.fold_crate_directive(c.node, c.span,
self as ast_fold);
2012-08-01 19:30:05 -05:00
return @{node: n,
2012-05-21 20:28:39 -05:00
span: self.new_span(s)};
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_view_item(&&x: @view_item) ->
2011-07-27 07:19:39 -05:00
@view_item {
2012-08-01 19:30:05 -05:00
return @{node: self.fold_view_item(x.node, self as ast_fold),
2012-06-30 18:19:07 -05:00
attrs: vec::map(x.attrs, |a|
fold_attribute_(a, self as ast_fold)),
vis: x.vis,
2012-05-21 20:28:39 -05:00
span: self.new_span(x.span)};
2011-06-20 19:25:49 -05:00
}
fn fold_foreign_item(&&x: @foreign_item)
-> @foreign_item {
2012-08-01 19:30:05 -05:00
return self.fold_foreign_item(x, self as ast_fold);
2011-06-20 19:25:49 -05:00
}
2012-07-06 14:17:34 -05:00
fn fold_item(&&i: @item) -> option<@item> {
2012-08-01 19:30:05 -05:00
return self.fold_item(i, self as ast_fold);
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_class_item(&&ci: @class_member) -> @class_member {
2012-08-06 14:34:08 -05:00
@{node: match ci.node {
2012-08-03 21:59:04 -05:00
instance_var(nm, t, mt, id, p) => {
instance_var(/* FIXME (#2543) */ copy nm,
2012-06-07 23:53:47 -05:00
(self as ast_fold).fold_ty(t), mt, id, p)
}
2012-08-03 21:59:04 -05:00
class_method(m) => {
2012-05-21 20:28:39 -05:00
class_method(self.fold_method(m, self as ast_fold))
}
2012-05-21 20:28:39 -05:00
}, span: self.new_span(ci.span)}
}
2012-05-21 20:28:39 -05:00
fn fold_item_underscore(i: item_) ->
2011-07-27 07:19:39 -05:00
item_ {
2012-08-01 19:30:05 -05:00
return self.fold_item_underscore(i, self as ast_fold);
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_method(&&x: @method)
-> @method {
2012-08-01 19:30:05 -05:00
return self.fold_method(x, self as ast_fold);
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_block(x: blk) -> blk {
let (n, s) = self.fold_block(x.node, x.span, self as ast_fold);
2012-08-01 19:30:05 -05:00
return {node: n, span: self.new_span(s)};
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_stmt(&&x: @stmt) -> @stmt {
let (n, s) = self.fold_stmt(x.node, x.span, self as ast_fold);
2012-08-01 19:30:05 -05:00
return @{node: n, span: self.new_span(s)};
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_arm(x: arm) -> arm {
2012-08-01 19:30:05 -05:00
return self.fold_arm(x, self as ast_fold);
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_pat(&&x: @pat) -> @pat {
let (n, s) = self.fold_pat(x.node, x.span, self as ast_fold);
2012-08-01 19:30:05 -05:00
return @{id: self.new_id(x.id),
node: n,
2012-05-21 20:28:39 -05:00
span: self.new_span(s)};
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_decl(&&x: @decl) -> @decl {
let (n, s) = self.fold_decl(x.node, x.span, self as ast_fold);
2012-08-01 19:30:05 -05:00
return @{node: n, span: self.new_span(s)};
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_expr(&&x: @expr) -> @expr {
let (n, s) = self.fold_expr(x.node, x.span, self as ast_fold);
2012-08-01 19:30:05 -05:00
return @{id: self.new_id(x.id),
callee_id: self.new_id(x.callee_id),
node: n,
2012-05-21 20:28:39 -05:00
span: self.new_span(s)};
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_ty(&&x: @ty) -> @ty {
let (n, s) = self.fold_ty(x.node, x.span, self as ast_fold);
2012-08-01 19:30:05 -05:00
return @{id: self.new_id(x.id), node: n, span: self.new_span(s)};
2011-06-20 19:25:49 -05:00
}
2012-05-21 20:28:39 -05:00
fn fold_mod(x: _mod) -> _mod {
2012-08-01 19:30:05 -05:00
return self.fold_mod(x, self as ast_fold);
2011-06-20 19:25:49 -05:00
}
fn fold_foreign_mod(x: foreign_mod) ->
foreign_mod {
2012-08-01 19:30:05 -05:00
return self.fold_foreign_mod(x, self as ast_fold);
}
2012-05-21 20:28:39 -05:00
fn fold_variant(x: variant) ->
2011-07-27 07:19:39 -05:00
variant {
2012-05-21 20:28:39 -05:00
let (n, s) = self.fold_variant(x.node, x.span, self as ast_fold);
2012-08-01 19:30:05 -05:00
return {node: n, span: self.new_span(s)};
2012-05-21 20:28:39 -05:00
}
fn fold_ident(&&x: ident) -> ident {
2012-08-01 19:30:05 -05:00
return self.fold_ident(x, self as ast_fold);
2012-05-21 20:28:39 -05:00
}
fn fold_path(&&x: @path) -> @path {
@self.fold_path(*x, self as ast_fold)
}
fn fold_local(&&x: @local) -> @local {
let (n, s) = self.fold_local(x.node, x.span, self as ast_fold);
2012-08-01 19:30:05 -05:00
return @{node: n, span: self.new_span(s)};
2012-05-21 20:28:39 -05:00
}
fn map_exprs(f: fn@(&&@expr) -> @expr, e: ~[@expr]) -> ~[@expr] {
2012-05-21 20:28:39 -05:00
self.map_exprs(f, e)
}
fn new_id(node_id: ast::node_id) -> node_id {
self.new_id(node_id)
}
fn new_span(span: span) -> span {
self.new_span(span)
}
}
impl extensions for ast_fold {
fn fold_attributes(attrs: ~[attribute]) -> ~[attribute] {
attrs.map(|x| fold_attribute_(x, self))
}
}
2012-05-21 20:28:39 -05:00
fn make_fold(afp: ast_fold_precursor) -> ast_fold {
afp as ast_fold
2011-06-20 19:25:49 -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:
//