rust/src/comp/syntax/ext/expand.rs

79 lines
2.3 KiB
Rust
Raw Normal View History

import driver::session;
import std::option::none;
import std::option::some;
import std::map::hashmap;
2011-08-15 23:38:23 +00:00
import std::vec;
import std::istr;
2011-08-05 20:06:11 +00:00
import syntax::ast::crate;
import syntax::ast::expr_;
import syntax::ast::expr_mac;
import syntax::ast::mac_invoc;
import syntax::fold::*;
import syntax::ext::base::*;
fn expand_expr(exts: &hashmap<istr, syntax_extension>, cx: &ext_ctxt,
e: &expr_, fld: ast_fold, orig: &fn(&expr_, ast_fold) -> expr_)
-> expr_ {
2011-07-27 12:19:39 +00:00
ret alt e {
expr_mac(mac) {
alt mac.node {
mac_invoc(pth, args, body) {
2011-08-15 23:38:23 +00:00
assert (vec::len(pth.node.idents) > 0u);
let extname = pth.node.idents[0];
alt exts.find(istr::from_estr(extname)) {
2011-07-27 12:19:39 +00:00
none. {
2011-08-05 20:06:11 +00:00
cx.span_fatal(pth.span,
#fmt["macro undefined: '%s'", extname])
2011-07-27 12:19:39 +00:00
}
2011-08-05 20:06:11 +00:00
some(normal(ext)) {
let expanded = ext(cx, pth.span, args, body);
2011-07-27 12:19:39 +00:00
2011-08-05 20:06:11 +00:00
cx.bt_push(mac.span);
2011-07-27 12:19:39 +00:00
//keep going, outside-in
2011-08-05 20:06:11 +00:00
let fully_expanded = fld.fold_expr(expanded).node;
cx.bt_pop();
fully_expanded
2011-07-27 12:19:39 +00:00
}
2011-08-05 20:06:11 +00:00
some(macro_defining(ext)) {
let named_extension = ext(cx, pth.span, args, body);
exts.insert(
istr::from_estr(named_extension.ident),
named_extension.ext);
ast::expr_rec([], none)
2011-07-27 12:19:39 +00:00
}
}
2011-07-27 12:19:39 +00:00
}
2011-08-05 20:06:11 +00:00
_ { cx.span_bug(mac.span, "naked syntactic bit") }
}
2011-07-27 12:19:39 +00:00
}
_ { orig(e, fld) }
};
}
2011-07-27 12:19:39 +00:00
fn expand_crate(sess: &session::session, c: &@crate) -> @crate {
2011-08-05 20:06:11 +00:00
let exts = syntax_expander_table();
2011-07-27 12:19:39 +00:00
let afp = default_ast_fold();
2011-08-05 20:06:11 +00:00
let cx: ext_ctxt = mk_ctxt(sess);
2011-07-27 12:19:39 +00:00
let f_pre =
2011-08-05 20:06:11 +00:00
{fold_expr: bind expand_expr(exts, cx, _, _, afp.fold_expr)
2011-07-27 12:19:39 +00:00
with *afp};
let f = make_fold(f_pre);
let res = @f.fold_crate(*c);
dummy_out(f); //temporary: kill circular reference
ret res;
}
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
// End: