2012-12-04 00:48:01 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-09-10 22:38:28 +00:00
|
|
|
use std::map::HashMap;
|
2011-07-06 22:22:23 +00:00
|
|
|
|
2012-09-04 18:37:29 +00:00
|
|
|
use ast::{crate, expr_, expr_mac, mac_invoc, mac_invoc_tt,
|
2012-11-21 23:49:42 +00:00
|
|
|
tt_delim, tt_tok, item_mac, stmt_, stmt_mac, stmt_expr, stmt_semi};
|
2012-09-04 18:37:29 +00:00
|
|
|
use fold::*;
|
|
|
|
use ext::base::*;
|
2012-11-21 00:07:57 +00:00
|
|
|
use parse::{parser, parse_expr_from_source_str, new_parser_from_tts};
|
2011-08-05 20:06:11 +00:00
|
|
|
|
2012-03-02 22:36:22 +00:00
|
|
|
|
2012-11-13 02:59:37 +00:00
|
|
|
use codemap::{span, ExpandedFrom};
|
2012-01-23 00:30:07 +00:00
|
|
|
|
2012-11-17 12:41:36 +00:00
|
|
|
|
2012-09-10 22:38:28 +00:00
|
|
|
fn expand_expr(exts: HashMap<~str, syntax_extension>, cx: ext_ctxt,
|
2012-01-23 00:30:07 +00:00
|
|
|
e: expr_, s: span, fld: ast_fold,
|
|
|
|
orig: fn@(expr_, span, ast_fold) -> (expr_, span))
|
|
|
|
-> (expr_, span)
|
|
|
|
{
|
2012-08-06 19:34:08 +00:00
|
|
|
return match e {
|
2012-07-28 00:42:32 +00:00
|
|
|
// expr_mac should really be expr_ext or something; it's the
|
|
|
|
// entry-point for all syntax extensions.
|
2012-12-04 18:50:00 +00:00
|
|
|
expr_mac(ref mac) => {
|
2012-07-28 00:42:32 +00:00
|
|
|
|
2012-12-04 18:50:00 +00:00
|
|
|
match (*mac).node {
|
2012-11-20 01:31:22 +00:00
|
|
|
// Old-style macros. For compatibility, will erase this whole
|
|
|
|
// block once we've transitioned.
|
2012-08-04 02:59:04 +00:00
|
|
|
mac_invoc(pth, args, body) => {
|
2012-04-23 11:04:46 +00:00
|
|
|
assert (vec::len(pth.idents) > 0u);
|
2012-07-18 23:18:02 +00:00
|
|
|
/* using idents and token::special_idents would make the
|
|
|
|
the macro names be hygienic */
|
|
|
|
let extname = cx.parse_sess().interner.get(pth.idents[0]);
|
2012-08-06 19:34:08 +00:00
|
|
|
match exts.find(*extname) {
|
2012-08-20 19:23:37 +00:00
|
|
|
None => {
|
2011-08-28 07:24:28 +00:00
|
|
|
cx.span_fatal(pth.span,
|
2012-08-23 00:24:52 +00:00
|
|
|
fmt!("macro undefined: '%s'", *extname))
|
2011-07-27 12:19:39 +00:00
|
|
|
}
|
2012-08-20 19:23:37 +00:00
|
|
|
Some(item_decorator(_)) => {
|
2012-03-02 22:36:22 +00:00
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
2012-08-23 00:24:52 +00:00
|
|
|
fmt!("%s can only be used as a decorator", *extname));
|
2012-03-02 22:36:22 +00:00
|
|
|
}
|
2012-08-20 19:23:37 +00:00
|
|
|
Some(normal({expander: exp, span: exp_sp})) => {
|
2011-07-27 12:19:39 +00:00
|
|
|
|
2012-11-13 02:59:37 +00:00
|
|
|
cx.bt_push(ExpandedFrom({call_site: s,
|
2012-06-10 07:49:59 +00:00
|
|
|
callie: {name: *extname, span: exp_sp}}));
|
2012-12-06 19:01:58 +00:00
|
|
|
let expanded = exp(cx, (*mac).span, args, body);
|
|
|
|
|
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();
|
|
|
|
|
2012-01-23 00:30:07 +00:00
|
|
|
(fully_expanded, s)
|
2011-07-27 12:19:39 +00:00
|
|
|
}
|
2012-08-20 19:23:37 +00:00
|
|
|
Some(macro_defining(ext)) => {
|
2012-12-04 18:50:00 +00:00
|
|
|
let named_extension = ext(cx, (*mac).span, args, body);
|
2012-07-18 23:18:02 +00:00
|
|
|
exts.insert(named_extension.name, named_extension.ext);
|
2012-08-20 19:23:37 +00:00
|
|
|
(ast::expr_rec(~[], None), s)
|
2011-07-27 12:19:39 +00:00
|
|
|
}
|
2012-11-09 04:12:45 +00:00
|
|
|
Some(normal_tt(_)) => {
|
2012-06-25 22:04:50 +00:00
|
|
|
cx.span_fatal(pth.span,
|
2012-08-23 00:24:52 +00:00
|
|
|
fmt!("this tt-style macro should be \
|
|
|
|
invoked '%s!(...)'", *extname))
|
2012-06-25 22:04:50 +00:00
|
|
|
}
|
2012-08-20 19:23:37 +00:00
|
|
|
Some(item_tt(*)) => {
|
2012-07-05 19:10:33 +00:00
|
|
|
cx.span_fatal(pth.span,
|
2012-07-14 05:57:48 +00:00
|
|
|
~"cannot use item macros in this context");
|
2012-07-05 19:10:33 +00:00
|
|
|
}
|
2012-06-25 22:04:50 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-28 00:42:32 +00:00
|
|
|
|
|
|
|
// Token-tree macros, these will be the only case when we're
|
|
|
|
// finished transitioning.
|
2012-12-04 18:50:00 +00:00
|
|
|
mac_invoc_tt(pth, ref tts) => {
|
2012-07-07 01:04:28 +00:00
|
|
|
assert (vec::len(pth.idents) == 1u);
|
2012-07-18 23:18:02 +00:00
|
|
|
/* using idents and token::special_idents would make the
|
|
|
|
the macro names be hygienic */
|
|
|
|
let extname = cx.parse_sess().interner.get(pth.idents[0]);
|
2012-08-06 19:34:08 +00:00
|
|
|
match exts.find(*extname) {
|
2012-08-20 19:23:37 +00:00
|
|
|
None => {
|
2012-06-25 22:04:50 +00:00
|
|
|
cx.span_fatal(pth.span,
|
2012-08-23 00:24:52 +00:00
|
|
|
fmt!("macro undefined: '%s'", *extname))
|
2012-06-25 22:04:50 +00:00
|
|
|
}
|
2012-11-09 04:12:45 +00:00
|
|
|
Some(normal_tt({expander: exp, span: exp_sp})) => {
|
2012-12-06 19:01:58 +00:00
|
|
|
cx.bt_push(ExpandedFrom({call_site: s,
|
|
|
|
callie: {name: *extname, span: exp_sp}}));
|
|
|
|
|
2012-12-04 18:50:00 +00:00
|
|
|
let expanded = match exp(cx, (*mac).span, (*tts)) {
|
2012-08-04 02:59:04 +00:00
|
|
|
mr_expr(e) => e,
|
2012-11-20 01:31:22 +00:00
|
|
|
mr_any(expr_maker,_,_) => expr_maker(),
|
2012-08-04 02:59:04 +00:00
|
|
|
_ => cx.span_fatal(
|
2012-08-23 00:24:52 +00:00
|
|
|
pth.span, fmt!("non-expr macro in expr pos: %s",
|
|
|
|
*extname))
|
2012-07-07 01:04:28 +00:00
|
|
|
};
|
2012-06-25 22:04:50 +00:00
|
|
|
|
|
|
|
//keep going, outside-in
|
|
|
|
let fully_expanded = fld.fold_expr(expanded).node;
|
|
|
|
cx.bt_pop();
|
|
|
|
|
|
|
|
(fully_expanded, s)
|
2012-07-13 00:59:59 +00:00
|
|
|
}
|
2012-08-20 19:23:37 +00:00
|
|
|
Some(normal({expander: exp, span: exp_sp})) => {
|
2012-12-06 19:01:58 +00:00
|
|
|
cx.bt_push(ExpandedFrom({call_site: s,
|
|
|
|
callie: {name: *extname, span: exp_sp}}));
|
|
|
|
|
2012-07-13 00:59:59 +00:00
|
|
|
//convert the new-style invoc for the old-style macro
|
|
|
|
let arg = base::tt_args_to_original_flavor(cx, pth.span,
|
2012-12-04 18:50:00 +00:00
|
|
|
(*tts));
|
|
|
|
let expanded = exp(cx, (*mac).span, arg, None);
|
2012-06-25 22:04:50 +00:00
|
|
|
|
2012-07-13 00:59:59 +00:00
|
|
|
//keep going, outside-in
|
|
|
|
let fully_expanded = fld.fold_expr(expanded).node;
|
|
|
|
cx.bt_pop();
|
|
|
|
|
|
|
|
(fully_expanded, s)
|
2012-06-25 22:04:50 +00:00
|
|
|
}
|
2012-08-04 02:59:04 +00:00
|
|
|
_ => {
|
2012-06-25 22:04:50 +00:00
|
|
|
cx.span_fatal(pth.span,
|
2012-08-23 00:24:52 +00:00
|
|
|
fmt!("'%s' is not a tt-style macro",
|
|
|
|
*extname))
|
2012-06-25 22:04:50 +00:00
|
|
|
}
|
|
|
|
|
2011-07-06 22:22:23 +00:00
|
|
|
}
|
2011-07-27 12:19:39 +00:00
|
|
|
}
|
2012-12-04 18:50:00 +00:00
|
|
|
_ => cx.span_bug((*mac).span, ~"naked syntactic bit")
|
2011-07-06 22:22:23 +00:00
|
|
|
}
|
2011-07-27 12:19:39 +00:00
|
|
|
}
|
2012-08-04 02:59:04 +00:00
|
|
|
_ => orig(e, s, fld)
|
2011-07-27 12:19:39 +00:00
|
|
|
};
|
2011-07-06 22:22:23 +00:00
|
|
|
}
|
|
|
|
|
2012-07-28 00:42:32 +00:00
|
|
|
// This is a secondary mechanism for invoking syntax extensions on items:
|
2012-10-09 00:34:16 +00:00
|
|
|
// "decorator" attributes, such as #[auto_serialize]. These are invoked by an
|
2012-07-28 00:42:32 +00:00
|
|
|
// attribute prefixing an item, and are interpreted by feeding the item
|
|
|
|
// through the named attribute _as a syntax extension_ and splicing in the
|
|
|
|
// resulting item vec into place in favour of the decorator. Note that
|
|
|
|
// these do _not_ work for macro extensions, just item_decorator ones.
|
|
|
|
//
|
|
|
|
// NB: there is some redundancy between this and expand_item, below, and
|
|
|
|
// they might benefit from some amount of semantic and language-UI merger.
|
2012-09-10 22:38:28 +00:00
|
|
|
fn expand_mod_items(exts: HashMap<~str, syntax_extension>, cx: ext_ctxt,
|
2012-07-31 23:38:41 +00:00
|
|
|
module_: ast::_mod, fld: ast_fold,
|
2012-03-02 22:36:22 +00:00
|
|
|
orig: fn@(ast::_mod, ast_fold) -> ast::_mod)
|
|
|
|
-> ast::_mod
|
|
|
|
{
|
|
|
|
// Fold the contents first:
|
2012-07-31 23:38:41 +00:00
|
|
|
let module_ = orig(module_, fld);
|
2012-03-02 22:36:22 +00:00
|
|
|
|
|
|
|
// For each item, look through the attributes. If any of them are
|
|
|
|
// decorated with "item decorators", then use that function to transform
|
|
|
|
// the item into a new set of items.
|
2012-07-31 23:38:41 +00:00
|
|
|
let new_items = do vec::flat_map(module_.items) |item| {
|
2012-09-28 05:20:47 +00:00
|
|
|
do vec::foldr(item.attrs, ~[*item]) |attr, items| {
|
2012-08-06 19:34:08 +00:00
|
|
|
let mname = match attr.node.value.node {
|
2012-12-04 18:50:00 +00:00
|
|
|
ast::meta_word(ref n) => (*n),
|
|
|
|
ast::meta_name_value(ref n, _) => (*n),
|
|
|
|
ast::meta_list(ref n, _) => (*n)
|
2012-03-02 22:36:22 +00:00
|
|
|
};
|
2012-07-18 23:18:02 +00:00
|
|
|
match exts.find(mname) {
|
2012-08-20 19:23:37 +00:00
|
|
|
None | Some(normal(_)) | Some(macro_defining(_))
|
2012-11-09 04:12:45 +00:00
|
|
|
| Some(normal_tt(_)) | Some(item_tt(*)) => items,
|
2012-08-20 19:23:37 +00:00
|
|
|
Some(item_decorator(dec_fn)) => {
|
2012-12-12 18:44:01 +00:00
|
|
|
cx.bt_push(ExpandedFrom({call_site: attr.span,
|
|
|
|
callie: {name: copy mname,
|
|
|
|
span: None}}));
|
|
|
|
let r = dec_fn(cx, attr.span, attr.node.value, items);
|
|
|
|
cx.bt_pop();
|
|
|
|
r
|
2012-03-02 22:36:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-09-28 05:20:47 +00:00
|
|
|
return {items: new_items, ..module_};
|
2012-03-02 22:36:22 +00:00
|
|
|
}
|
|
|
|
|
2012-07-27 18:19:21 +00:00
|
|
|
|
|
|
|
// When we enter a module, record it, for the sake of `module!`
|
2012-09-10 22:38:28 +00:00
|
|
|
fn expand_item(exts: HashMap<~str, syntax_extension>,
|
2012-07-05 19:10:33 +00:00
|
|
|
cx: ext_ctxt, &&it: @ast::item, fld: ast_fold,
|
2012-09-23 11:39:27 +00:00
|
|
|
orig: fn@(&&v: @ast::item, ast_fold) -> Option<@ast::item>)
|
2012-08-20 19:23:37 +00:00
|
|
|
-> Option<@ast::item>
|
2012-05-18 17:00:49 +00:00
|
|
|
{
|
2012-08-06 19:34:08 +00:00
|
|
|
let is_mod = match it.node {
|
2012-08-04 02:59:04 +00:00
|
|
|
ast::item_mod(_) | ast::item_foreign_mod(_) => true,
|
|
|
|
_ => false
|
2012-05-18 17:00:49 +00:00
|
|
|
};
|
2012-08-06 19:34:08 +00:00
|
|
|
let maybe_it = match it.node {
|
2012-08-04 02:59:04 +00:00
|
|
|
ast::item_mac(*) => expand_item_mac(exts, cx, it, fld),
|
2012-08-20 19:23:37 +00:00
|
|
|
_ => Some(it)
|
2012-07-05 19:10:33 +00:00
|
|
|
};
|
2012-07-06 19:17:34 +00:00
|
|
|
|
2012-08-06 19:34:08 +00:00
|
|
|
match maybe_it {
|
2012-08-20 19:23:37 +00:00
|
|
|
Some(it) => {
|
2012-07-06 19:17:34 +00:00
|
|
|
if is_mod { cx.mod_push(it.ident); }
|
|
|
|
let ret_val = orig(it, fld);
|
|
|
|
if is_mod { cx.mod_pop(); }
|
2012-08-02 00:30:05 +00:00
|
|
|
return ret_val;
|
2012-07-06 19:17:34 +00:00
|
|
|
}
|
2012-08-20 19:23:37 +00:00
|
|
|
None => return None
|
2012-07-06 19:17:34 +00:00
|
|
|
}
|
2012-05-18 17:00:49 +00:00
|
|
|
}
|
|
|
|
|
2012-11-17 12:41:36 +00:00
|
|
|
// avoid excess indentation when a series of nested `match`es
|
|
|
|
// has only one "good" outcome
|
|
|
|
macro_rules! biased_match (
|
|
|
|
( ($e :expr) ~ ($p :pat) else $err :stmt ;
|
|
|
|
$( ($e_cdr:expr) ~ ($p_cdr:pat) else $err_cdr:stmt ; )*
|
|
|
|
=> $body:expr
|
|
|
|
) => (
|
|
|
|
match $e {
|
|
|
|
$p => {
|
|
|
|
biased_match!($( ($e_cdr) ~ ($p_cdr) else $err_cdr ; )*
|
|
|
|
=> $body)
|
|
|
|
}
|
|
|
|
_ => { $err }
|
|
|
|
}
|
|
|
|
);
|
|
|
|
( => $body:expr ) => ( $body )
|
|
|
|
)
|
|
|
|
|
2012-07-27 18:19:21 +00:00
|
|
|
|
|
|
|
// Support for item-position macro invocations, exactly the same
|
|
|
|
// logic as for expression-position macro invocations.
|
2012-09-10 22:38:28 +00:00
|
|
|
fn expand_item_mac(exts: HashMap<~str, syntax_extension>,
|
2012-07-05 23:46:32 +00:00
|
|
|
cx: ext_ctxt, &&it: @ast::item,
|
2012-08-20 19:23:37 +00:00
|
|
|
fld: ast_fold) -> Option<@ast::item> {
|
2012-11-17 12:41:36 +00:00
|
|
|
let (pth, tts) = biased_match!(
|
2012-12-04 18:50:00 +00:00
|
|
|
(it.node) ~ (item_mac({node: mac_invoc_tt(pth, ref tts), _})) else {
|
2012-11-17 12:41:36 +00:00
|
|
|
cx.span_bug(it.span, ~"invalid item macro invocation")
|
|
|
|
};
|
2012-12-04 18:50:00 +00:00
|
|
|
=> (pth, (*tts))
|
2012-11-17 12:41:36 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
let extname = cx.parse_sess().interner.get(pth.idents[0]);
|
2012-12-07 00:19:05 +00:00
|
|
|
let expanded = match exts.find(*extname) {
|
2012-11-17 12:41:36 +00:00
|
|
|
None => cx.span_fatal(pth.span,
|
|
|
|
fmt!("macro undefined: '%s!'", *extname)),
|
|
|
|
|
2012-12-04 18:50:00 +00:00
|
|
|
Some(normal_tt(ref expand)) => {
|
2012-11-09 04:12:45 +00:00
|
|
|
if it.ident != parse::token::special_idents::invalid {
|
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
fmt!("macro %s! expects no ident argument, \
|
|
|
|
given '%s'", *extname,
|
|
|
|
*cx.parse_sess().interner.get(it.ident)));
|
|
|
|
}
|
2012-12-07 00:19:05 +00:00
|
|
|
cx.bt_push(ExpandedFrom({call_site: it.span,
|
|
|
|
callie: {name: *extname,
|
|
|
|
span: (*expand).span}}));
|
|
|
|
((*expand).expander)(cx, it.span, tts)
|
2012-11-17 12:41:36 +00:00
|
|
|
}
|
2012-12-04 18:50:00 +00:00
|
|
|
Some(item_tt(ref expand)) => {
|
2012-11-09 04:12:45 +00:00
|
|
|
if it.ident == parse::token::special_idents::invalid {
|
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
fmt!("macro %s! expects an ident argument",
|
|
|
|
*extname));
|
|
|
|
}
|
2012-12-07 00:19:05 +00:00
|
|
|
cx.bt_push(ExpandedFrom({call_site: it.span,
|
|
|
|
callie: {name: *extname,
|
|
|
|
span: (*expand).span}}));
|
|
|
|
((*expand).expander)(cx, it.span, it.ident, tts)
|
2012-11-17 12:41:36 +00:00
|
|
|
}
|
|
|
|
_ => cx.span_fatal(
|
|
|
|
it.span, fmt!("%s! is not legal in item position", *extname))
|
|
|
|
};
|
2012-11-09 04:12:45 +00:00
|
|
|
|
2012-11-17 12:41:36 +00:00
|
|
|
let maybe_it = match expanded {
|
|
|
|
mr_item(it) => fld.fold_item(it),
|
|
|
|
mr_expr(_) => cx.span_fatal(pth.span,
|
|
|
|
~"expr macro in item position: "
|
|
|
|
+ *extname),
|
|
|
|
mr_any(_, item_maker, _) =>
|
|
|
|
option::chain(item_maker(), |i| {fld.fold_item(i)}),
|
2012-12-04 18:50:00 +00:00
|
|
|
mr_def(ref mdef) => {
|
|
|
|
exts.insert((*mdef).name, (*mdef).ext);
|
2012-11-17 12:41:36 +00:00
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
|
|
|
cx.bt_pop();
|
|
|
|
return maybe_it;
|
2012-07-05 19:10:33 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 01:31:22 +00:00
|
|
|
fn expand_stmt(exts: HashMap<~str, syntax_extension>, cx: ext_ctxt,
|
|
|
|
&& s: stmt_, sp: span, fld: ast_fold,
|
|
|
|
orig: fn@(&&s: stmt_, span, ast_fold) -> (stmt_, span))
|
|
|
|
-> (stmt_, span)
|
|
|
|
{
|
2012-11-21 18:37:43 +00:00
|
|
|
let (mac, pth, tts, semi) = biased_match! (
|
2012-12-05 05:13:02 +00:00
|
|
|
(s) ~ (stmt_mac(ref mac, semi)) else return orig(s, sp, fld);
|
2012-12-04 18:50:00 +00:00
|
|
|
((*mac).node) ~ (mac_invoc_tt(pth, ref tts)) else {
|
|
|
|
cx.span_bug((*mac).span, ~"naked syntactic bit")
|
2012-11-17 12:41:36 +00:00
|
|
|
};
|
2012-12-04 18:50:00 +00:00
|
|
|
=> ((*mac), pth, (*tts), semi));
|
2012-11-17 12:41:36 +00:00
|
|
|
|
|
|
|
assert(vec::len(pth.idents) == 1u);
|
|
|
|
let extname = cx.parse_sess().interner.get(pth.idents[0]);
|
2012-11-21 23:49:42 +00:00
|
|
|
let (fully_expanded, sp) = match exts.find(*extname) {
|
2012-11-17 12:41:36 +00:00
|
|
|
None =>
|
|
|
|
cx.span_fatal(pth.span, fmt!("macro undefined: '%s'", *extname)),
|
|
|
|
|
|
|
|
Some(normal_tt({expander: exp, span: exp_sp})) => {
|
2012-12-06 19:01:58 +00:00
|
|
|
cx.bt_push(ExpandedFrom(
|
|
|
|
{call_site: sp, callie: {name: *extname, span: exp_sp}}));
|
2012-11-17 12:41:36 +00:00
|
|
|
let expanded = match exp(cx, mac.span, tts) {
|
2012-11-21 23:49:42 +00:00
|
|
|
mr_expr(e) =>
|
|
|
|
@{node: stmt_expr(e, cx.next_id()), span: e.span},
|
2012-11-17 12:41:36 +00:00
|
|
|
mr_any(_,_,stmt_mkr) => stmt_mkr(),
|
|
|
|
_ => cx.span_fatal(
|
|
|
|
pth.span,
|
|
|
|
fmt!("non-stmt macro in stmt pos: %s", *extname))
|
|
|
|
};
|
|
|
|
|
|
|
|
//keep going, outside-in
|
|
|
|
let fully_expanded = fld.fold_stmt(expanded).node;
|
|
|
|
cx.bt_pop();
|
|
|
|
|
2012-11-21 23:49:42 +00:00
|
|
|
(fully_expanded, sp)
|
2012-11-20 01:31:22 +00:00
|
|
|
}
|
2012-11-19 05:30:48 +00:00
|
|
|
|
|
|
|
Some(normal({expander: exp, span: exp_sp})) => {
|
2012-12-06 19:01:58 +00:00
|
|
|
cx.bt_push(ExpandedFrom({call_site: sp,
|
|
|
|
callie: {name: *extname,
|
|
|
|
span: exp_sp}}));
|
2012-11-19 05:30:48 +00:00
|
|
|
//convert the new-style invoc for the old-style macro
|
|
|
|
let arg = base::tt_args_to_original_flavor(cx, pth.span, tts);
|
|
|
|
let exp_expr = exp(cx, mac.span, arg, None);
|
2012-11-21 23:49:42 +00:00
|
|
|
let expanded = @{node: stmt_expr(exp_expr, cx.next_id()),
|
2012-11-19 05:30:48 +00:00
|
|
|
span: exp_expr.span};
|
|
|
|
|
|
|
|
//keep going, outside-in
|
|
|
|
let fully_expanded = fld.fold_stmt(expanded).node;
|
|
|
|
cx.bt_pop();
|
|
|
|
|
|
|
|
(fully_expanded, sp)
|
|
|
|
}
|
|
|
|
|
2012-11-17 12:41:36 +00:00
|
|
|
_ => {
|
|
|
|
cx.span_fatal(pth.span,
|
2012-11-21 23:49:42 +00:00
|
|
|
fmt!("'%s' is not a tt-style macro", *extname))
|
2012-11-17 12:41:36 +00:00
|
|
|
}
|
2012-11-21 23:49:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return (match fully_expanded {
|
|
|
|
stmt_expr(e, stmt_id) if semi => stmt_semi(e, stmt_id),
|
|
|
|
_ => { fully_expanded } /* might already have a semi */
|
|
|
|
}, sp)
|
2012-11-17 12:41:36 +00:00
|
|
|
|
2012-11-20 01:31:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-05 01:37:24 +00:00
|
|
|
fn new_span(cx: ext_ctxt, sp: span) -> span {
|
|
|
|
/* this discards information in the case of macro-defining macros */
|
2012-11-12 23:12:20 +00:00
|
|
|
return span {lo: sp.lo, hi: sp.hi, expn_info: cx.backtrace()};
|
2012-02-05 01:37:24 +00:00
|
|
|
}
|
|
|
|
|
2012-06-21 23:44:10 +00:00
|
|
|
// FIXME (#2247): this is a terrible kludge to inject some macros into
|
|
|
|
// the default compilation environment. When the macro-definition system
|
|
|
|
// is substantially more mature, these should move from here, into a
|
|
|
|
// compiled part of libcore at very least.
|
2011-12-20 21:38:10 +00:00
|
|
|
|
2012-07-14 05:57:48 +00:00
|
|
|
fn core_macros() -> ~str {
|
2012-08-02 00:30:05 +00:00
|
|
|
return
|
2012-07-14 05:57:48 +00:00
|
|
|
~"{
|
2012-09-07 23:58:27 +00:00
|
|
|
macro_rules! ignore (($($x:tt)*) => (()))
|
2012-11-27 03:34:01 +00:00
|
|
|
|
|
|
|
macro_rules! error ( ($( $arg:expr ),+) => (
|
|
|
|
log(core::error, fmt!( $($arg),+ )) ))
|
|
|
|
macro_rules! warn ( ($( $arg:expr ),+) => (
|
|
|
|
log(core::warn, fmt!( $($arg),+ )) ))
|
|
|
|
macro_rules! info ( ($( $arg:expr ),+) => (
|
|
|
|
log(core::info, fmt!( $($arg),+ )) ))
|
|
|
|
macro_rules! debug ( ($( $arg:expr ),+) => (
|
|
|
|
log(core::debug, fmt!( $($arg),+ )) ))
|
2012-11-28 02:05:20 +00:00
|
|
|
|
|
|
|
macro_rules! die(
|
|
|
|
($msg: expr) => (
|
2012-12-11 01:22:10 +00:00
|
|
|
core::sys::begin_unwind($msg, file!(), line!())
|
2012-11-28 02:05:20 +00:00
|
|
|
);
|
|
|
|
() => (
|
2012-12-11 01:22:10 +00:00
|
|
|
die!(~\"explicit failure\")
|
2012-11-28 02:05:20 +00:00
|
|
|
)
|
|
|
|
)
|
2011-12-20 21:38:10 +00:00
|
|
|
}";
|
|
|
|
}
|
|
|
|
|
2012-04-18 06:34:48 +00:00
|
|
|
fn expand_crate(parse_sess: parse::parse_sess,
|
2012-03-27 21:03:57 +00:00
|
|
|
cfg: ast::crate_cfg, 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();
|
2012-03-27 21:03:57 +00:00
|
|
|
let cx: ext_ctxt = mk_ctxt(parse_sess, cfg);
|
2011-07-27 12:19:39 +00:00
|
|
|
let f_pre =
|
2012-06-30 23:19:07 +00:00
|
|
|
@{fold_expr: |a,b,c| expand_expr(exts, cx, a, b, c, afp.fold_expr),
|
|
|
|
fold_mod: |a,b| expand_mod_items(exts, cx, a, b, afp.fold_mod),
|
2012-07-05 19:10:33 +00:00
|
|
|
fold_item: |a,b| expand_item(exts, cx, a, b, afp.fold_item),
|
2012-11-20 01:31:22 +00:00
|
|
|
fold_stmt: |a,b,c| expand_stmt(exts, cx, a, b, c, afp.fold_stmt),
|
|
|
|
new_span: |a| new_span(cx, a),
|
2012-09-04 20:29:32 +00:00
|
|
|
.. *afp};
|
2011-07-27 12:19:39 +00:00
|
|
|
let f = make_fold(f_pre);
|
2012-07-14 05:57:48 +00:00
|
|
|
let cm = parse_expr_from_source_str(~"<core-macros>",
|
2012-04-30 18:52:07 +00:00
|
|
|
@core_macros(),
|
2012-03-27 21:03:57 +00:00
|
|
|
cfg,
|
|
|
|
parse_sess);
|
2011-12-20 21:38:10 +00:00
|
|
|
|
|
|
|
// This is run for its side-effects on the expander env,
|
|
|
|
// as it registers all the core macros as expanders.
|
|
|
|
f.fold_expr(cm);
|
|
|
|
|
2011-07-27 12:19:39 +00:00
|
|
|
let res = @f.fold_crate(*c);
|
2012-08-02 00:30:05 +00:00
|
|
|
return res;
|
2011-07-06 22:22:23 +00:00
|
|
|
}
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|