2011-07-06 17:22:23 -05:00
|
|
|
import driver::session;
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
import option::{none, some};
|
2011-07-06 17:22:23 -05:00
|
|
|
|
|
|
|
import std::map::hashmap;
|
2011-12-13 18:25:51 -06:00
|
|
|
import vec;
|
2011-07-06 17:22:23 -05:00
|
|
|
|
2011-09-12 18:13:28 -05:00
|
|
|
import syntax::ast::{crate, expr_, expr_mac, mac_invoc};
|
2011-08-05 15:06:11 -05:00
|
|
|
import syntax::fold::*;
|
|
|
|
import syntax::ext::base::*;
|
|
|
|
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn expand_expr(exts: hashmap<str, syntax_extension>, cx: ext_ctxt, e: expr_,
|
2011-10-18 17:07:40 -05:00
|
|
|
fld: ast_fold, orig: fn@(expr_, ast_fold) -> expr_) -> expr_ {
|
2011-07-27 07:19:39 -05:00
|
|
|
ret alt e {
|
|
|
|
expr_mac(mac) {
|
|
|
|
alt mac.node {
|
|
|
|
mac_invoc(pth, args, body) {
|
2011-08-15 18:38:23 -05:00
|
|
|
assert (vec::len(pth.node.idents) > 0u);
|
2011-08-19 17:16:48 -05:00
|
|
|
let extname = pth.node.idents[0];
|
2011-08-25 19:00:12 -05:00
|
|
|
alt exts.find(extname) {
|
2011-07-27 07:19:39 -05:00
|
|
|
none. {
|
2011-08-28 02:24:28 -05:00
|
|
|
cx.span_fatal(pth.span,
|
2011-09-02 17:34:58 -05:00
|
|
|
#fmt["macro undefined: '%s'", extname])
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-08-05 15:06:11 -05:00
|
|
|
some(normal(ext)) {
|
|
|
|
let expanded = ext(cx, pth.span, args, body);
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2011-08-05 15:06:11 -05:00
|
|
|
cx.bt_push(mac.span);
|
2011-07-27 07:19:39 -05:00
|
|
|
//keep going, outside-in
|
2011-08-05 15:06:11 -05:00
|
|
|
let fully_expanded = fld.fold_expr(expanded).node;
|
|
|
|
cx.bt_pop();
|
|
|
|
|
|
|
|
fully_expanded
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-08-05 15:06:11 -05:00
|
|
|
some(macro_defining(ext)) {
|
|
|
|
let named_extension = ext(cx, pth.span, args, body);
|
2011-09-02 17:34:58 -05:00
|
|
|
exts.insert(named_extension.ident, named_extension.ext);
|
2011-08-19 17:16:48 -05:00
|
|
|
ast::expr_rec([], none)
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-07-06 17:22:23 -05:00
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-09-02 17:34:58 -05:00
|
|
|
_ { cx.span_bug(mac.span, "naked syntactic bit") }
|
2011-07-06 17:22:23 -05:00
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
|
|
|
_ { orig(e, fld) }
|
|
|
|
};
|
2011-07-06 17:22:23 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn expand_crate(sess: session::session, c: @crate) -> @crate {
|
2011-08-05 15:06:11 -05:00
|
|
|
let exts = syntax_expander_table();
|
2011-07-27 07:19:39 -05:00
|
|
|
let afp = default_ast_fold();
|
2011-08-05 15:06:11 -05:00
|
|
|
let cx: ext_ctxt = mk_ctxt(sess);
|
2011-07-27 07:19:39 -05:00
|
|
|
let f_pre =
|
2011-08-05 15:06:11 -05:00
|
|
|
{fold_expr: bind expand_expr(exts, cx, _, _, afp.fold_expr)
|
2011-07-27 07:19:39 -05:00
|
|
|
with *afp};
|
|
|
|
let f = make_fold(f_pre);
|
|
|
|
let res = @f.fold_crate(*c);
|
2011-07-06 17:22:23 -05:00
|
|
|
ret res;
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2011-07-06 17:22:23 -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:
|