2012-12-03 18:48:01 -06: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.
|
|
|
|
|
2013-02-25 13:11:21 -06:00
|
|
|
use ast::{blk_, attribute_, attr_outer, meta_word};
|
2013-06-08 11:21:11 -05:00
|
|
|
use ast::{crate, expr_, expr_mac, mac_invoc_tt};
|
|
|
|
use ast::{item_mac, stmt_, stmt_mac, stmt_expr, stmt_semi};
|
|
|
|
use ast::{illegal_ctxt};
|
2012-12-23 16:41:37 -06:00
|
|
|
use ast;
|
2013-06-08 11:21:11 -05:00
|
|
|
use ast_util::{new_rename, new_mark, resolve};
|
2013-02-11 10:36:42 -06:00
|
|
|
use attr;
|
2013-02-25 13:11:21 -06:00
|
|
|
use codemap;
|
2013-07-02 04:31:00 -05:00
|
|
|
use codemap::{span, ExpnInfo, NameAndSpan, spanned};
|
2012-09-04 13:37:29 -05:00
|
|
|
use ext::base::*;
|
2012-12-23 16:41:37 -06:00
|
|
|
use fold::*;
|
2013-02-25 13:11:21 -06:00
|
|
|
use parse;
|
2013-03-26 15:38:07 -05:00
|
|
|
use parse::{parse_item_from_source_str};
|
2013-06-08 11:21:11 -05:00
|
|
|
use parse::token::{ident_to_str, intern};
|
2013-06-04 16:56:33 -05:00
|
|
|
use visit;
|
2013-06-08 11:21:11 -05:00
|
|
|
use visit::Visitor;
|
2011-08-05 15:06:11 -05:00
|
|
|
|
2013-06-24 19:40:33 -05:00
|
|
|
use std::vec;
|
2013-05-24 21:35:29 -05:00
|
|
|
|
2013-03-01 15:30:06 -06:00
|
|
|
pub fn expand_expr(extsbox: @mut SyntaxEnv,
|
2013-05-17 06:27:17 -05:00
|
|
|
cx: @ExtCtxt,
|
2013-03-01 15:30:06 -06:00
|
|
|
e: &expr_,
|
|
|
|
s: span,
|
2013-03-12 15:00:50 -05:00
|
|
|
fld: @ast_fold,
|
|
|
|
orig: @fn(&expr_, span, @ast_fold) -> (expr_, span))
|
2013-01-29 16:41:40 -06:00
|
|
|
-> (expr_, span) {
|
2013-02-18 00:20:36 -06:00
|
|
|
match *e {
|
|
|
|
// expr_mac should really be expr_ext or something; it's the
|
|
|
|
// entry-point for all syntax extensions.
|
|
|
|
expr_mac(ref mac) => {
|
2012-12-04 12:50:00 -06:00
|
|
|
match (*mac).node {
|
2013-03-04 15:58:31 -06:00
|
|
|
// Token-tree macros:
|
2013-07-05 05:15:21 -05:00
|
|
|
mac_invoc_tt(ref pth, ref tts) => {
|
2013-03-04 15:58:31 -06:00
|
|
|
if (pth.idents.len() > 1u) {
|
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
|
|
|
fmt!("expected macro name without module \
|
2013-03-04 18:50:52 -06:00
|
|
|
separators"));
|
2013-03-04 15:58:31 -06:00
|
|
|
}
|
2013-06-04 01:00:49 -05:00
|
|
|
let extname = &pth.idents[0];
|
2013-06-04 14:34:25 -05:00
|
|
|
let extnamestr = ident_to_str(extname);
|
2013-02-27 13:03:21 -06:00
|
|
|
// leaving explicit deref here to highlight unbox op:
|
2013-05-17 12:18:09 -05:00
|
|
|
match (*extsbox).find(&extname.name) {
|
2013-02-18 00:20:36 -06:00
|
|
|
None => {
|
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
2013-06-12 12:02:55 -05:00
|
|
|
fmt!("macro undefined: '%s'", extnamestr))
|
2013-02-21 02:16:31 -06:00
|
|
|
}
|
2013-02-27 13:03:21 -06:00
|
|
|
Some(@SE(NormalTT(SyntaxExpanderTT{
|
2013-02-18 00:20:36 -06:00
|
|
|
expander: exp,
|
|
|
|
span: exp_sp
|
2013-02-27 13:03:21 -06:00
|
|
|
}))) => {
|
2013-07-02 04:31:00 -05:00
|
|
|
cx.bt_push(ExpnInfo {
|
2013-02-18 00:20:36 -06:00
|
|
|
call_site: s,
|
|
|
|
callee: NameAndSpan {
|
2013-06-12 12:02:55 -05:00
|
|
|
name: extnamestr,
|
2013-02-18 00:20:36 -06:00
|
|
|
span: exp_sp,
|
|
|
|
},
|
2013-07-02 04:31:00 -05:00
|
|
|
});
|
2013-02-18 00:20:36 -06:00
|
|
|
|
|
|
|
let expanded = match exp(cx, mac.span, *tts) {
|
|
|
|
MRExpr(e) => e,
|
|
|
|
MRAny(expr_maker,_,_) => expr_maker(),
|
|
|
|
_ => {
|
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
|
|
|
fmt!(
|
|
|
|
"non-expr macro in expr pos: %s",
|
2013-06-12 12:02:55 -05:00
|
|
|
extnamestr
|
2013-02-18 00:20:36 -06:00
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//keep going, outside-in
|
2013-02-24 23:27:51 -06:00
|
|
|
let fully_expanded =
|
|
|
|
copy fld.fold_expr(expanded).node;
|
2013-02-18 00:20:36 -06:00
|
|
|
cx.bt_pop();
|
|
|
|
|
|
|
|
(fully_expanded, s)
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
2013-06-12 12:02:55 -05:00
|
|
|
fmt!("'%s' is not a tt-style macro", extnamestr)
|
2013-02-18 00:20:36 -06:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2011-07-06 17:22:23 -05:00
|
|
|
}
|
|
|
|
}
|
2013-02-18 00:20:36 -06:00
|
|
|
}
|
|
|
|
_ => orig(e, s, fld)
|
|
|
|
}
|
2011-07-06 17:22:23 -05:00
|
|
|
}
|
|
|
|
|
2012-07-27 19:42:32 -05:00
|
|
|
// This is a secondary mechanism for invoking syntax extensions on items:
|
2012-12-17 21:31:04 -06:00
|
|
|
// "decorator" attributes, such as #[auto_encode]. These are invoked by an
|
2012-07-27 19:42:32 -05: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
|
2013-01-22 18:45:27 -06:00
|
|
|
// these do _not_ work for macro extensions, just ItemDecorator ones.
|
2012-07-27 19:42:32 -05:00
|
|
|
//
|
|
|
|
// NB: there is some redundancy between this and expand_item, below, and
|
|
|
|
// they might benefit from some amount of semantic and language-UI merger.
|
2013-03-01 15:30:06 -06:00
|
|
|
pub fn expand_mod_items(extsbox: @mut SyntaxEnv,
|
2013-05-17 06:27:17 -05:00
|
|
|
cx: @ExtCtxt,
|
2013-03-01 15:30:06 -06:00
|
|
|
module_: &ast::_mod,
|
2013-03-12 15:00:50 -05:00
|
|
|
fld: @ast_fold,
|
|
|
|
orig: @fn(&ast::_mod, @ast_fold) -> ast::_mod)
|
2013-01-29 16:41:40 -06:00
|
|
|
-> ast::_mod {
|
2013-03-15 14:24:24 -05:00
|
|
|
|
2012-03-02 16:36:22 -06:00
|
|
|
// Fold the contents first:
|
2012-07-31 18:38:41 -05:00
|
|
|
let module_ = orig(module_, fld);
|
2012-03-02 16:36:22 -06: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 18:38:41 -05:00
|
|
|
let new_items = do vec::flat_map(module_.items) |item| {
|
2013-06-08 00:12:39 -05:00
|
|
|
do item.attrs.rev_iter().fold(~[*item]) |items, attr| {
|
2013-02-11 10:36:42 -06:00
|
|
|
let mname = attr::get_attr_name(attr);
|
|
|
|
|
2013-06-12 12:02:55 -05:00
|
|
|
match (*extsbox).find(&intern(mname)) {
|
2013-02-26 12:15:29 -06:00
|
|
|
Some(@SE(ItemDecorator(dec_fn))) => {
|
2013-07-02 04:31:00 -05:00
|
|
|
cx.bt_push(ExpnInfo {
|
2013-02-21 02:16:31 -06:00
|
|
|
call_site: attr.span,
|
|
|
|
callee: NameAndSpan {
|
2013-06-12 12:02:55 -05:00
|
|
|
name: mname,
|
2013-02-21 02:16:31 -06:00
|
|
|
span: None
|
|
|
|
}
|
2013-07-02 04:31:00 -05:00
|
|
|
});
|
2012-12-12 12:44:01 -06:00
|
|
|
let r = dec_fn(cx, attr.span, attr.node.value, items);
|
|
|
|
cx.bt_pop();
|
|
|
|
r
|
2013-02-26 12:15:29 -06:00
|
|
|
},
|
|
|
|
_ => items,
|
2012-03-02 16:36:22 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-01-15 18:05:20 -06:00
|
|
|
ast::_mod { items: new_items, ..module_ }
|
2012-03-02 16:36:22 -06:00
|
|
|
}
|
|
|
|
|
2012-07-27 13:19:21 -05:00
|
|
|
|
2013-02-26 12:15:29 -06:00
|
|
|
// eval $e with a new exts frame:
|
|
|
|
macro_rules! with_exts_frame (
|
2013-05-08 17:27:29 -05:00
|
|
|
($extsboxexpr:expr,$macros_escape:expr,$e:expr) =>
|
2013-02-26 12:15:29 -06:00
|
|
|
({let extsbox = $extsboxexpr;
|
|
|
|
let oldexts = *extsbox;
|
|
|
|
*extsbox = oldexts.push_frame();
|
2013-05-08 17:27:29 -05:00
|
|
|
extsbox.insert(intern(special_block_name),
|
|
|
|
@BlockInfo(BlockInfo{macros_escape:$macros_escape,pending_renames:@mut ~[]}));
|
2013-02-26 12:15:29 -06:00
|
|
|
let result = $e;
|
|
|
|
*extsbox = oldexts;
|
|
|
|
result
|
|
|
|
})
|
|
|
|
)
|
|
|
|
|
2013-05-08 17:27:29 -05:00
|
|
|
static special_block_name : &'static str = " block";
|
|
|
|
|
2012-07-27 13:19:21 -05:00
|
|
|
// When we enter a module, record it, for the sake of `module!`
|
2013-02-26 12:15:29 -06:00
|
|
|
pub fn expand_item(extsbox: @mut SyntaxEnv,
|
2013-05-17 06:27:17 -05:00
|
|
|
cx: @ExtCtxt,
|
2013-03-01 15:30:06 -06:00
|
|
|
it: @ast::item,
|
2013-03-12 15:00:50 -05:00
|
|
|
fld: @ast_fold,
|
|
|
|
orig: @fn(@ast::item, @ast_fold) -> Option<@ast::item>)
|
2013-01-29 16:41:40 -06:00
|
|
|
-> Option<@ast::item> {
|
2013-02-26 12:15:29 -06:00
|
|
|
// need to do expansion first... it might turn out to be a module.
|
2012-08-06 14:34:08 -05:00
|
|
|
let maybe_it = match it.node {
|
2013-02-26 12:15:29 -06:00
|
|
|
ast::item_mac(*) => expand_item_mac(extsbox, cx, it, fld),
|
2012-08-20 14:23:37 -05:00
|
|
|
_ => Some(it)
|
2012-07-05 14:10:33 -05:00
|
|
|
};
|
2012-08-06 14:34:08 -05:00
|
|
|
match maybe_it {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(it) => {
|
2013-02-26 12:15:29 -06:00
|
|
|
match it.node {
|
|
|
|
ast::item_mod(_) | ast::item_foreign_mod(_) => {
|
|
|
|
cx.mod_push(it.ident);
|
2013-05-08 17:27:29 -05:00
|
|
|
let macro_escape = contains_macro_escape(it.attrs);
|
|
|
|
let result = with_exts_frame!(extsbox,macro_escape,orig(it,fld));
|
2013-02-26 12:15:29 -06:00
|
|
|
cx.mod_pop();
|
|
|
|
result
|
|
|
|
}
|
|
|
|
_ => orig(it,fld)
|
|
|
|
}
|
2012-07-06 14:17:34 -05:00
|
|
|
}
|
2013-02-26 12:15:29 -06:00
|
|
|
None => None
|
2012-07-06 14:17:34 -05:00
|
|
|
}
|
2012-05-18 12:00:49 -05:00
|
|
|
}
|
|
|
|
|
2013-02-26 12:15:29 -06:00
|
|
|
// does this attribute list contain "macro_escape" ?
|
2013-05-02 17:33:33 -05:00
|
|
|
pub fn contains_macro_escape (attrs: &[ast::attribute]) -> bool {
|
2013-07-04 21:13:26 -05:00
|
|
|
attrs.iter().any(|attr| "macro_escape" == attr::get_attr_name(attr))
|
2013-02-26 12:15:29 -06:00
|
|
|
}
|
|
|
|
|
2012-07-27 13:19:21 -05:00
|
|
|
// Support for item-position macro invocations, exactly the same
|
|
|
|
// logic as for expression-position macro invocations.
|
2013-04-17 11:15:08 -05:00
|
|
|
pub fn expand_item_mac(extsbox: @mut SyntaxEnv,
|
2013-05-17 06:27:17 -05:00
|
|
|
cx: @ExtCtxt, it: @ast::item,
|
2013-03-12 15:00:50 -05:00
|
|
|
fld: @ast_fold)
|
|
|
|
-> Option<@ast::item> {
|
2012-12-12 14:25:40 -06:00
|
|
|
let (pth, tts) = match it.node {
|
2013-07-05 05:15:21 -05:00
|
|
|
item_mac(codemap::spanned { node: mac_invoc_tt(ref pth, ref tts), _}) => {
|
2013-02-24 23:27:51 -06:00
|
|
|
(pth, copy *tts)
|
2012-12-27 13:36:00 -06:00
|
|
|
}
|
2013-05-19 00:07:44 -05:00
|
|
|
_ => cx.span_bug(it.span, "invalid item macro invocation")
|
2012-12-12 14:25:40 -06:00
|
|
|
};
|
2012-11-17 06:41:36 -06:00
|
|
|
|
2013-06-04 01:00:49 -05:00
|
|
|
let extname = &pth.idents[0];
|
2013-06-04 14:34:25 -05:00
|
|
|
let extnamestr = ident_to_str(extname);
|
2013-05-17 12:18:09 -05:00
|
|
|
let expanded = match (*extsbox).find(&extname.name) {
|
2012-11-17 06:41:36 -06:00
|
|
|
None => cx.span_fatal(pth.span,
|
2013-06-12 12:02:55 -05:00
|
|
|
fmt!("macro undefined: '%s!'", extnamestr)),
|
2012-11-17 06:41:36 -06:00
|
|
|
|
2013-02-26 12:15:29 -06:00
|
|
|
Some(@SE(NormalTT(ref expand))) => {
|
2012-11-08 22:12:45 -06:00
|
|
|
if it.ident != parse::token::special_idents::invalid {
|
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
fmt!("macro %s! expects no ident argument, \
|
2013-06-12 12:02:55 -05:00
|
|
|
given '%s'", extnamestr,
|
|
|
|
ident_to_str(&it.ident)));
|
2012-11-08 22:12:45 -06:00
|
|
|
}
|
2013-07-02 04:31:00 -05:00
|
|
|
cx.bt_push(ExpnInfo {
|
2013-02-21 02:16:31 -06:00
|
|
|
call_site: it.span,
|
|
|
|
callee: NameAndSpan {
|
2013-06-12 12:02:55 -05:00
|
|
|
name: extnamestr,
|
2013-02-24 23:27:51 -06:00
|
|
|
span: expand.span
|
2013-02-21 02:16:31 -06:00
|
|
|
}
|
2013-07-02 04:31:00 -05:00
|
|
|
});
|
2012-12-06 18:19:05 -06:00
|
|
|
((*expand).expander)(cx, it.span, tts)
|
2012-11-17 06:41:36 -06:00
|
|
|
}
|
2013-02-26 12:15:29 -06:00
|
|
|
Some(@SE(IdentTT(ref expand))) => {
|
2012-11-08 22:12:45 -06:00
|
|
|
if it.ident == parse::token::special_idents::invalid {
|
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
fmt!("macro %s! expects an ident argument",
|
2013-06-12 12:02:55 -05:00
|
|
|
extnamestr));
|
2012-11-08 22:12:45 -06:00
|
|
|
}
|
2013-07-02 04:31:00 -05:00
|
|
|
cx.bt_push(ExpnInfo {
|
2013-02-21 02:16:31 -06:00
|
|
|
call_site: it.span,
|
|
|
|
callee: NameAndSpan {
|
2013-06-12 12:02:55 -05:00
|
|
|
name: extnamestr,
|
2013-02-24 23:27:51 -06:00
|
|
|
span: expand.span
|
2013-02-21 02:16:31 -06:00
|
|
|
}
|
2013-07-02 04:31:00 -05:00
|
|
|
});
|
2012-12-06 18:19:05 -06:00
|
|
|
((*expand).expander)(cx, it.span, it.ident, tts)
|
2012-11-17 06:41:36 -06:00
|
|
|
}
|
|
|
|
_ => cx.span_fatal(
|
2013-06-12 12:02:55 -05:00
|
|
|
it.span, fmt!("%s! is not legal in item position", extnamestr))
|
2012-11-17 06:41:36 -06:00
|
|
|
};
|
2012-11-08 22:12:45 -06:00
|
|
|
|
2012-11-17 06:41:36 -06:00
|
|
|
let maybe_it = match expanded {
|
2013-01-22 18:45:27 -06:00
|
|
|
MRItem(it) => fld.fold_item(it),
|
|
|
|
MRExpr(_) => cx.span_fatal(pth.span,
|
2013-06-12 12:02:55 -05:00
|
|
|
fmt!("expr macro in item position: %s", extnamestr)),
|
2013-03-16 14:49:12 -05:00
|
|
|
MRAny(_, item_maker, _) => item_maker().chain(|i| {fld.fold_item(i)}),
|
2013-01-22 18:45:27 -06:00
|
|
|
MRDef(ref mdef) => {
|
2013-05-08 17:27:29 -05:00
|
|
|
insert_macro(*extsbox,intern(mdef.name), @SE((*mdef).ext));
|
2012-11-17 06:41:36 -06:00
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
|
|
|
cx.bt_pop();
|
|
|
|
return maybe_it;
|
2012-07-05 14:10:33 -05:00
|
|
|
}
|
|
|
|
|
2013-05-08 17:27:29 -05:00
|
|
|
|
|
|
|
// insert a macro into the innermost frame that doesn't have the
|
|
|
|
// macro_escape tag.
|
|
|
|
fn insert_macro(exts: SyntaxEnv, name: ast::Name, transformer: @Transformer) {
|
|
|
|
let is_non_escaping_block =
|
|
|
|
|t : &@Transformer| -> bool{
|
|
|
|
match t {
|
|
|
|
&@BlockInfo(BlockInfo {macros_escape:false,_}) => true,
|
|
|
|
&@BlockInfo(BlockInfo {_}) => false,
|
2013-06-04 16:56:33 -05:00
|
|
|
_ => fail!(fmt!("special identifier %? was bound to a non-BlockInfo",
|
|
|
|
special_block_name))
|
2013-05-08 17:27:29 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
exts.insert_into_frame(name,transformer,intern(special_block_name),
|
|
|
|
is_non_escaping_block)
|
|
|
|
}
|
|
|
|
|
2013-02-26 12:15:29 -06:00
|
|
|
// expand a stmt
|
2013-03-01 15:30:06 -06:00
|
|
|
pub fn expand_stmt(extsbox: @mut SyntaxEnv,
|
2013-05-17 06:27:17 -05:00
|
|
|
cx: @ExtCtxt,
|
2013-03-01 15:30:06 -06:00
|
|
|
s: &stmt_,
|
|
|
|
sp: span,
|
2013-03-12 15:00:50 -05:00
|
|
|
fld: @ast_fold,
|
2013-06-04 23:43:41 -05:00
|
|
|
orig: @fn(&stmt_, span, @ast_fold)
|
|
|
|
-> (Option<stmt_>, span))
|
|
|
|
-> (Option<stmt_>, span) {
|
2013-02-18 00:20:36 -06:00
|
|
|
let (mac, pth, tts, semi) = match *s {
|
2012-12-12 14:25:40 -06:00
|
|
|
stmt_mac(ref mac, semi) => {
|
2013-02-18 00:20:36 -06:00
|
|
|
match mac.node {
|
2013-07-05 05:15:21 -05:00
|
|
|
mac_invoc_tt(ref pth, ref tts) => {
|
2013-02-24 23:27:51 -06:00
|
|
|
(copy *mac, pth, copy *tts, semi)
|
|
|
|
}
|
2012-12-12 14:25:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => return orig(s, sp, fld)
|
|
|
|
};
|
2013-03-04 15:58:31 -06:00
|
|
|
if (pth.idents.len() > 1u) {
|
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
|
|
|
fmt!("expected macro name without module \
|
2013-03-04 18:50:52 -06:00
|
|
|
separators"));
|
2013-03-04 15:58:31 -06:00
|
|
|
}
|
2013-06-04 01:00:49 -05:00
|
|
|
let extname = &pth.idents[0];
|
2013-06-04 14:34:25 -05:00
|
|
|
let extnamestr = ident_to_str(extname);
|
2013-05-17 12:18:09 -05:00
|
|
|
let (fully_expanded, sp) = match (*extsbox).find(&extname.name) {
|
2012-11-17 06:41:36 -06:00
|
|
|
None =>
|
2013-06-12 12:02:55 -05:00
|
|
|
cx.span_fatal(pth.span, fmt!("macro undefined: '%s'", extnamestr)),
|
2012-11-17 06:41:36 -06:00
|
|
|
|
2013-02-26 12:15:29 -06:00
|
|
|
Some(@SE(NormalTT(
|
|
|
|
SyntaxExpanderTT{expander: exp, span: exp_sp}))) => {
|
2013-07-02 04:31:00 -05:00
|
|
|
cx.bt_push(ExpnInfo {
|
2013-02-21 02:16:31 -06:00
|
|
|
call_site: sp,
|
2013-06-12 12:02:55 -05:00
|
|
|
callee: NameAndSpan { name: extnamestr, span: exp_sp }
|
2013-07-02 04:31:00 -05:00
|
|
|
});
|
2012-11-17 06:41:36 -06:00
|
|
|
let expanded = match exp(cx, mac.span, tts) {
|
2013-01-22 18:45:27 -06:00
|
|
|
MRExpr(e) =>
|
2013-01-30 11:56:33 -06:00
|
|
|
@codemap::spanned { node: stmt_expr(e, cx.next_id()),
|
2012-12-27 13:36:00 -06:00
|
|
|
span: e.span},
|
2013-01-22 18:45:27 -06:00
|
|
|
MRAny(_,_,stmt_mkr) => stmt_mkr(),
|
2012-11-17 06:41:36 -06:00
|
|
|
_ => cx.span_fatal(
|
|
|
|
pth.span,
|
2013-06-12 12:02:55 -05:00
|
|
|
fmt!("non-stmt macro in stmt pos: %s", extnamestr))
|
2012-11-17 06:41:36 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
//keep going, outside-in
|
2013-06-04 23:43:41 -05:00
|
|
|
let fully_expanded = match fld.fold_stmt(expanded) {
|
|
|
|
Some(stmt) => {
|
|
|
|
let fully_expanded = &stmt.node;
|
|
|
|
cx.bt_pop();
|
|
|
|
copy *fully_expanded
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
"macro didn't expand to a statement")
|
|
|
|
}
|
|
|
|
};
|
2012-11-17 06:41:36 -06:00
|
|
|
|
2012-11-21 17:49:42 -06:00
|
|
|
(fully_expanded, sp)
|
2012-11-19 19:31:22 -06:00
|
|
|
}
|
2012-11-18 23:30:48 -06:00
|
|
|
|
2012-11-17 06:41:36 -06:00
|
|
|
_ => {
|
|
|
|
cx.span_fatal(pth.span,
|
2013-06-12 12:02:55 -05:00
|
|
|
fmt!("'%s' is not a tt-style macro", extnamestr))
|
2012-11-17 06:41:36 -06:00
|
|
|
}
|
2012-11-21 17:49:42 -06:00
|
|
|
};
|
|
|
|
|
2013-02-26 12:15:29 -06:00
|
|
|
(match fully_expanded {
|
2013-06-04 23:43:41 -05:00
|
|
|
stmt_expr(e, stmt_id) if semi => Some(stmt_semi(e, stmt_id)),
|
|
|
|
_ => { Some(fully_expanded) } /* might already have a semi */
|
2012-11-21 17:49:42 -06:00
|
|
|
}, sp)
|
2012-11-17 06:41:36 -06:00
|
|
|
|
2012-11-19 19:31:22 -06:00
|
|
|
}
|
|
|
|
|
2013-06-04 16:56:33 -05:00
|
|
|
// return a visitor that extracts the pat_ident paths
|
|
|
|
// from a given pattern and puts them in a mutable
|
2013-05-21 18:57:21 -05:00
|
|
|
// array (passed in to the traversal)
|
2013-06-04 16:56:33 -05:00
|
|
|
pub fn new_name_finder() -> @Visitor<@mut ~[ast::ident]> {
|
|
|
|
let default_visitor = visit::default_visitor();
|
|
|
|
@Visitor{
|
2013-06-12 12:16:30 -05:00
|
|
|
visit_pat : |p:@ast::pat,
|
|
|
|
(ident_accum, v): (@mut ~[ast::ident], visit::vt<@mut ~[ast::ident]>)| {
|
2013-06-04 16:56:33 -05:00
|
|
|
match *p {
|
|
|
|
// we found a pat_ident!
|
2013-07-05 05:15:21 -05:00
|
|
|
ast::pat{id:_, node: ast::pat_ident(_,ref path,ref inner), span:_} => {
|
2013-06-04 16:56:33 -05:00
|
|
|
match path {
|
|
|
|
// a path of length one:
|
2013-07-05 05:15:21 -05:00
|
|
|
&ast::Path{global: false,idents: [id], span:_,rp:_,types:_} =>
|
2013-06-04 16:56:33 -05:00
|
|
|
ident_accum.push(id),
|
|
|
|
// I believe these must be enums...
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
// visit optional subpattern of pat_ident:
|
2013-06-10 16:50:12 -05:00
|
|
|
for inner.iter().advance |subpat: &@ast::pat| {
|
2013-06-11 21:55:16 -05:00
|
|
|
(v.visit_pat)(*subpat, (ident_accum, v))
|
2013-06-10 16:50:12 -05:00
|
|
|
}
|
2013-06-04 16:56:33 -05:00
|
|
|
}
|
|
|
|
// use the default traversal for non-pat_idents
|
2013-06-11 21:55:16 -05:00
|
|
|
_ => visit::visit_pat(p,(ident_accum,v))
|
2013-06-04 16:56:33 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
.. *default_visitor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-01 15:30:06 -06:00
|
|
|
pub fn expand_block(extsbox: @mut SyntaxEnv,
|
2013-06-04 17:14:56 -05:00
|
|
|
_cx: @ExtCtxt,
|
2013-03-01 15:30:06 -06:00
|
|
|
blk: &blk_,
|
|
|
|
sp: span,
|
2013-03-12 15:00:50 -05:00
|
|
|
fld: @ast_fold,
|
|
|
|
orig: @fn(&blk_, span, @ast_fold) -> (blk_, span))
|
2013-03-01 15:30:06 -06:00
|
|
|
-> (blk_, span) {
|
2013-05-08 17:27:29 -05:00
|
|
|
// see note below about treatment of exts table
|
|
|
|
with_exts_frame!(extsbox,false,orig(blk,sp,fld))
|
2013-02-26 12:15:29 -06:00
|
|
|
}
|
|
|
|
|
2013-06-04 16:56:33 -05:00
|
|
|
|
|
|
|
// get the (innermost) BlockInfo from an exts stack
|
|
|
|
fn get_block_info(exts : SyntaxEnv) -> BlockInfo {
|
|
|
|
match exts.find_in_topmost_frame(&intern(special_block_name)) {
|
|
|
|
Some(@BlockInfo(bi)) => bi,
|
|
|
|
_ => fail!(fmt!("special identifier %? was bound to a non-BlockInfo",
|
2013-06-12 12:02:55 -05:00
|
|
|
@" block"))
|
2013-06-04 16:56:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-17 11:41:04 -05:00
|
|
|
// given a mutable list of renames, return a tree-folder that applies those
|
|
|
|
// renames.
|
|
|
|
fn renames_to_fold(renames : @mut ~[(ast::ident,ast::Name)]) -> @ast_fold {
|
|
|
|
let afp = default_ast_fold();
|
|
|
|
let f_pre = @AstFoldFns {
|
|
|
|
fold_ident: |id,_| {
|
|
|
|
// the individual elements are memoized... it would
|
|
|
|
// also be possible to memoize on the whole list at once.
|
2013-06-17 18:43:22 -05:00
|
|
|
let new_ctxt = renames.iter().fold(id.ctxt,|ctxt,&(from,to)| {
|
|
|
|
new_rename(from,to,ctxt)
|
2013-05-17 11:41:04 -05:00
|
|
|
});
|
2013-05-17 12:18:09 -05:00
|
|
|
ast::ident{name:id.name,ctxt:new_ctxt}
|
2013-05-17 11:41:04 -05:00
|
|
|
},
|
|
|
|
.. *afp
|
|
|
|
};
|
|
|
|
make_fold(f_pre)
|
|
|
|
}
|
|
|
|
|
|
|
|
// perform a bunch of renames
|
|
|
|
fn apply_pending_renames(folder : @ast_fold, stmt : ast::stmt) -> @ast::stmt {
|
|
|
|
match folder.fold_stmt(&stmt) {
|
|
|
|
Some(s) => s,
|
|
|
|
None => fail!(fmt!("renaming of stmt produced None"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-05-17 06:27:17 -05:00
|
|
|
pub fn new_span(cx: @ExtCtxt, sp: span) -> span {
|
2012-02-04 19:37:24 -06:00
|
|
|
/* this discards information in the case of macro-defining macros */
|
2012-11-12 17:12:20 -06:00
|
|
|
return span {lo: sp.lo, hi: sp.hi, expn_info: cx.backtrace()};
|
2012-02-04 19:37:24 -06:00
|
|
|
}
|
|
|
|
|
2013-02-26 12:15:29 -06:00
|
|
|
// FIXME (#2247): this is a moderately bad kludge to inject some macros into
|
|
|
|
// the default compilation environment. It would be much nicer to use
|
|
|
|
// a mechanism like syntax_quote to ensure hygiene.
|
2011-12-20 15:38:10 -06:00
|
|
|
|
2013-06-12 12:02:55 -05:00
|
|
|
pub fn core_macros() -> @str {
|
2012-08-01 19:30:05 -05:00
|
|
|
return
|
2013-06-12 12:02:55 -05:00
|
|
|
@"pub mod macros {
|
2012-09-07 18:58:27 -05:00
|
|
|
macro_rules! ignore (($($x:tt)*) => (()))
|
2012-11-26 21:34:01 -06:00
|
|
|
|
2013-03-07 20:45:22 -06:00
|
|
|
macro_rules! error (
|
|
|
|
($arg:expr) => (
|
2013-03-08 20:32:03 -06:00
|
|
|
__log(1u32, fmt!( \"%?\", $arg ))
|
2013-03-07 20:45:22 -06:00
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
2013-03-08 20:32:03 -06:00
|
|
|
__log(1u32, fmt!( $($arg),+ ))
|
2013-03-07 20:45:22 -06:00
|
|
|
)
|
|
|
|
)
|
2013-04-23 15:30:58 -05:00
|
|
|
|
2013-03-07 20:45:22 -06:00
|
|
|
macro_rules! warn (
|
|
|
|
($arg:expr) => (
|
2013-03-08 20:32:03 -06:00
|
|
|
__log(2u32, fmt!( \"%?\", $arg ))
|
2013-03-07 20:45:22 -06:00
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
2013-03-08 20:32:03 -06:00
|
|
|
__log(2u32, fmt!( $($arg),+ ))
|
2013-03-07 20:45:22 -06:00
|
|
|
)
|
|
|
|
)
|
2013-04-23 15:30:58 -05:00
|
|
|
|
2013-03-07 20:45:22 -06:00
|
|
|
macro_rules! info (
|
|
|
|
($arg:expr) => (
|
2013-03-08 20:32:03 -06:00
|
|
|
__log(3u32, fmt!( \"%?\", $arg ))
|
2013-03-07 20:45:22 -06:00
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
2013-03-08 20:32:03 -06:00
|
|
|
__log(3u32, fmt!( $($arg),+ ))
|
2013-03-07 20:45:22 -06:00
|
|
|
)
|
|
|
|
)
|
2013-04-23 15:30:58 -05:00
|
|
|
|
2013-03-07 20:45:22 -06:00
|
|
|
macro_rules! debug (
|
|
|
|
($arg:expr) => (
|
2013-03-08 20:32:03 -06:00
|
|
|
__log(4u32, fmt!( \"%?\", $arg ))
|
2013-03-07 20:45:22 -06:00
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
2013-03-08 20:32:03 -06:00
|
|
|
__log(4u32, fmt!( $($arg),+ ))
|
2013-03-07 20:45:22 -06:00
|
|
|
)
|
|
|
|
)
|
2012-11-27 20:05:20 -06:00
|
|
|
|
2013-01-31 20:24:09 -06:00
|
|
|
macro_rules! fail(
|
|
|
|
() => (
|
2013-04-23 15:30:58 -05:00
|
|
|
fail!(\"explicit failure\")
|
|
|
|
);
|
|
|
|
($msg:expr) => (
|
2013-05-20 17:20:16 -05:00
|
|
|
::std::sys::FailWithCause::fail_with($msg, file!(), line!())
|
2013-04-23 15:30:58 -05:00
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
2013-05-20 17:20:16 -05:00
|
|
|
::std::sys::FailWithCause::fail_with(fmt!( $($arg),+ ), file!(), line!())
|
2013-01-31 20:24:09 -06:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2013-03-22 15:11:03 -05:00
|
|
|
macro_rules! assert(
|
|
|
|
($cond:expr) => {
|
|
|
|
if !$cond {
|
2013-05-20 17:20:16 -05:00
|
|
|
::std::sys::FailWithCause::fail_with(
|
2013-04-23 15:30:58 -05:00
|
|
|
~\"assertion failed: \" + stringify!($cond), file!(), line!())
|
2013-01-22 18:00:07 -06:00
|
|
|
}
|
2013-03-19 13:05:20 -05:00
|
|
|
};
|
|
|
|
($cond:expr, $msg:expr) => {
|
|
|
|
if !$cond {
|
2013-05-20 17:20:16 -05:00
|
|
|
::std::sys::FailWithCause::fail_with($msg, file!(), line!())
|
2013-04-23 15:30:58 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
($cond:expr, $( $arg:expr ),+) => {
|
|
|
|
if !$cond {
|
2013-05-20 17:20:16 -05:00
|
|
|
::std::sys::FailWithCause::fail_with(fmt!( $($arg),+ ), file!(), line!())
|
2013-03-19 13:05:20 -05:00
|
|
|
}
|
2013-01-22 18:00:07 -06:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2013-03-13 14:10:32 -05:00
|
|
|
macro_rules! assert_eq (
|
2013-04-23 15:30:58 -05:00
|
|
|
($given:expr , $expected:expr) => (
|
|
|
|
{
|
|
|
|
let given_val = $given;
|
|
|
|
let expected_val = $expected;
|
|
|
|
// check both directions of equality....
|
|
|
|
if !((given_val == expected_val) && (expected_val == given_val)) {
|
2013-07-10 12:07:26 -05:00
|
|
|
fail!(\"assertion failed: `(left == right) && (right == \
|
|
|
|
left)` (left: `%?`, right: `%?`)\", given_val, expected_val);
|
2013-04-23 15:30:58 -05:00
|
|
|
}
|
2013-05-06 06:51:48 -05:00
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
macro_rules! assert_approx_eq (
|
|
|
|
($given:expr , $expected:expr) => (
|
|
|
|
{
|
2013-05-20 17:20:16 -05:00
|
|
|
use std::cmp::ApproxEq;
|
2013-05-06 06:51:48 -05:00
|
|
|
|
|
|
|
let given_val = $given;
|
|
|
|
let expected_val = $expected;
|
|
|
|
// check both directions of equality....
|
|
|
|
if !(
|
|
|
|
given_val.approx_eq(&expected_val) &&
|
|
|
|
expected_val.approx_eq(&given_val)
|
|
|
|
) {
|
|
|
|
fail!(\"left: %? does not approximately equal right: %?\",
|
|
|
|
given_val, expected_val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
($given:expr , $expected:expr , $epsilon:expr) => (
|
|
|
|
{
|
2013-05-20 17:20:16 -05:00
|
|
|
use std::cmp::ApproxEq;
|
2013-05-06 06:51:48 -05:00
|
|
|
|
|
|
|
let given_val = $given;
|
|
|
|
let expected_val = $expected;
|
|
|
|
let epsilon_val = $epsilon;
|
|
|
|
// check both directions of equality....
|
|
|
|
if !(
|
|
|
|
given_val.approx_eq_eps(&expected_val, &epsilon_val) &&
|
|
|
|
expected_val.approx_eq_eps(&given_val, &epsilon_val)
|
|
|
|
) {
|
|
|
|
fail!(\"left: %? does not approximately equal right: %? with epsilon: %?\",
|
|
|
|
given_val, expected_val, epsilon_val);
|
|
|
|
}
|
2013-04-23 15:30:58 -05:00
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
2013-03-13 14:10:32 -05:00
|
|
|
|
2012-12-14 13:52:11 -06:00
|
|
|
macro_rules! condition (
|
|
|
|
|
2013-05-06 12:05:36 -05:00
|
|
|
{ pub $c:ident: $in:ty -> $out:ty; } => {
|
|
|
|
|
|
|
|
pub mod $c {
|
2013-07-12 03:38:44 -05:00
|
|
|
#[allow(non_uppercase_statics)];
|
2013-07-14 03:43:31 -05:00
|
|
|
static key: ::std::local_data::Key<
|
|
|
|
@::std::condition::Handler<$in, $out>> =
|
|
|
|
&::std::local_data::Key;
|
2013-05-06 12:05:36 -05:00
|
|
|
|
|
|
|
pub static cond :
|
2013-07-12 03:38:44 -05:00
|
|
|
::std::condition::Condition<$in,$out> =
|
2013-05-20 17:20:16 -05:00
|
|
|
::std::condition::Condition {
|
2013-05-06 12:05:36 -05:00
|
|
|
name: stringify!($c),
|
|
|
|
key: key
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-14 13:52:11 -06:00
|
|
|
{ $c:ident: $in:ty -> $out:ty; } => {
|
|
|
|
|
2013-05-06 12:05:36 -05:00
|
|
|
// FIXME (#6009): remove mod's `pub` below once variant above lands.
|
2013-04-22 16:43:02 -05:00
|
|
|
pub mod $c {
|
2013-07-12 03:38:44 -05:00
|
|
|
#[allow(non_uppercase_statics)];
|
2013-07-14 03:43:31 -05:00
|
|
|
static key: ::std::local_data::Key<
|
|
|
|
@::std::condition::Handler<$in, $out>> =
|
|
|
|
&::std::local_data::Key;
|
2012-12-14 13:52:11 -06:00
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static cond :
|
2013-07-12 03:38:44 -05:00
|
|
|
::std::condition::Condition<$in,$out> =
|
2013-05-20 17:20:16 -05:00
|
|
|
::std::condition::Condition {
|
2013-02-26 13:34:00 -06:00
|
|
|
name: stringify!($c),
|
|
|
|
key: key
|
|
|
|
};
|
2012-12-14 13:52:11 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2013-05-08 10:38:39 -05:00
|
|
|
//
|
|
|
|
// A scheme-style conditional that helps to improve code clarity in some instances when
|
|
|
|
// the `if`, `else if`, and `else` keywords obscure predicates undesirably.
|
|
|
|
//
|
|
|
|
// # Example
|
|
|
|
//
|
|
|
|
// ~~~
|
|
|
|
// let clamped =
|
|
|
|
// if x > mx { mx }
|
|
|
|
// else if x < mn { mn }
|
|
|
|
// else { x };
|
|
|
|
// ~~~
|
|
|
|
//
|
|
|
|
// Using `cond!`, the above could be written as:
|
|
|
|
//
|
|
|
|
// ~~~
|
|
|
|
// let clamped = cond!(
|
2013-05-10 00:01:27 -05:00
|
|
|
// (x > mx) { mx }
|
|
|
|
// (x < mn) { mn }
|
2013-05-08 10:38:39 -05:00
|
|
|
// _ { x }
|
|
|
|
// );
|
|
|
|
// ~~~
|
|
|
|
//
|
|
|
|
// The optional default case is denoted by `_`.
|
|
|
|
//
|
|
|
|
macro_rules! cond (
|
2013-05-10 00:01:27 -05:00
|
|
|
( $(($pred:expr) $body:block)+ _ $default:block ) => (
|
2013-05-08 10:38:39 -05:00
|
|
|
$(if $pred $body else)+
|
|
|
|
$default
|
|
|
|
);
|
|
|
|
// for if the default case was ommitted
|
2013-05-10 00:01:27 -05:00
|
|
|
( $(($pred:expr) $body:block)+ ) => (
|
2013-05-08 10:38:39 -05:00
|
|
|
$(if $pred $body)else+
|
|
|
|
);
|
|
|
|
)
|
2013-07-13 08:30:31 -05:00
|
|
|
|
2013-07-13 16:08:05 -05:00
|
|
|
macro_rules! printf (
|
|
|
|
($arg:expr) => (
|
|
|
|
print(fmt!(\"%?\", $arg))
|
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
|
|
|
print(fmt!($($arg),+))
|
|
|
|
)
|
2013-07-13 08:30:31 -05:00
|
|
|
)
|
|
|
|
|
2013-07-13 16:08:05 -05:00
|
|
|
macro_rules! printfln (
|
|
|
|
($arg:expr) => (
|
|
|
|
println(fmt!(\"%?\", $arg))
|
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
|
|
|
println(fmt!($($arg),+))
|
|
|
|
)
|
2013-07-13 08:30:31 -05:00
|
|
|
)
|
2011-12-20 15:38:10 -06:00
|
|
|
}";
|
|
|
|
}
|
|
|
|
|
2013-02-21 02:16:31 -06:00
|
|
|
pub fn expand_crate(parse_sess: @mut parse::ParseSess,
|
2013-06-27 08:04:22 -05:00
|
|
|
cfg: ast::crate_cfg, c: &crate) -> @crate {
|
2013-02-26 12:15:29 -06:00
|
|
|
// adding *another* layer of indirection here so that the block
|
|
|
|
// visitor can swap out one exts table for another for the duration
|
|
|
|
// of the block. The cleaner alternative would be to thread the
|
|
|
|
// exts table through the fold, but that would require updating
|
|
|
|
// every method/element of AstFoldFns in fold.rs.
|
|
|
|
let extsbox = @mut syntax_expander_table();
|
2011-07-27 07:19:39 -05:00
|
|
|
let afp = default_ast_fold();
|
2013-05-17 06:27:17 -05:00
|
|
|
let cx = ExtCtxt::new(parse_sess, copy cfg);
|
2013-01-08 16:00:45 -06:00
|
|
|
let f_pre = @AstFoldFns {
|
2013-02-26 12:15:29 -06:00
|
|
|
fold_expr: |expr,span,recur|
|
|
|
|
expand_expr(extsbox, cx, expr, span, recur, afp.fold_expr),
|
|
|
|
fold_mod: |modd,recur|
|
|
|
|
expand_mod_items(extsbox, cx, modd, recur, afp.fold_mod),
|
|
|
|
fold_item: |item,recur|
|
|
|
|
expand_item(extsbox, cx, item, recur, afp.fold_item),
|
|
|
|
fold_stmt: |stmt,span,recur|
|
|
|
|
expand_stmt(extsbox, cx, stmt, span, recur, afp.fold_stmt),
|
|
|
|
fold_block: |blk,span,recur|
|
2013-02-27 13:03:21 -06:00
|
|
|
expand_block(extsbox, cx, blk, span, recur, afp.fold_block),
|
2013-01-08 16:00:45 -06:00
|
|
|
new_span: |a| new_span(cx, a),
|
|
|
|
.. *afp};
|
2011-07-27 07:19:39 -05:00
|
|
|
let f = make_fold(f_pre);
|
2013-02-26 12:15:29 -06:00
|
|
|
// add a bunch of macros as though they were placed at the
|
|
|
|
// head of the program (ick).
|
2013-02-27 13:03:21 -06:00
|
|
|
let attrs = ~[
|
|
|
|
spanned {
|
|
|
|
span: codemap::dummy_sp(),
|
|
|
|
node: attribute_ {
|
|
|
|
style: attr_outer,
|
|
|
|
value: @spanned {
|
2013-06-12 12:02:55 -05:00
|
|
|
node: meta_word(@"macro_escape"),
|
2013-02-27 13:03:21 -06:00
|
|
|
span: codemap::dummy_sp(),
|
|
|
|
},
|
|
|
|
is_sugared_doc: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
];
|
2013-02-26 12:15:29 -06:00
|
|
|
|
2013-06-12 12:02:55 -05:00
|
|
|
let cm = match parse_item_from_source_str(@"<core-macros>",
|
|
|
|
core_macros(),
|
2013-02-27 13:03:21 -06:00
|
|
|
copy cfg,
|
|
|
|
attrs,
|
2013-02-26 12:15:29 -06:00
|
|
|
parse_sess) {
|
|
|
|
Some(item) => item,
|
2013-05-19 00:07:44 -05:00
|
|
|
None => cx.bug("expected core macros to parse correctly")
|
2013-02-26 12:15:29 -06:00
|
|
|
};
|
2011-12-20 15:38:10 -06:00
|
|
|
// This is run for its side-effects on the expander env,
|
|
|
|
// as it registers all the core macros as expanders.
|
2013-02-26 12:15:29 -06:00
|
|
|
f.fold_item(cm);
|
2011-12-20 15:38:10 -06:00
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
@f.fold_crate(c)
|
2011-07-06 17:22:23 -05:00
|
|
|
}
|
2013-02-26 12:15:29 -06:00
|
|
|
|
2013-05-16 19:42:08 -05:00
|
|
|
// given a function from idents to idents, produce
|
2013-04-03 12:28:14 -05:00
|
|
|
// an ast_fold that applies that function:
|
2013-05-16 19:42:08 -05:00
|
|
|
pub fn fun_to_ident_folder(f: @fn(ast::ident)->ast::ident) -> @ast_fold{
|
2013-04-03 12:28:14 -05:00
|
|
|
let afp = default_ast_fold();
|
|
|
|
let f_pre = @AstFoldFns{
|
2013-05-16 19:42:08 -05:00
|
|
|
fold_ident : |id, _| f(id),
|
2013-04-03 12:28:14 -05:00
|
|
|
.. *afp
|
|
|
|
};
|
|
|
|
make_fold(f_pre)
|
|
|
|
}
|
2013-05-16 19:42:08 -05:00
|
|
|
|
2013-04-03 12:28:14 -05:00
|
|
|
// update the ctxts in a path to get a rename node
|
2013-05-16 19:42:08 -05:00
|
|
|
pub fn new_ident_renamer(from: ast::ident,
|
2013-05-21 18:57:21 -05:00
|
|
|
to: ast::Name) ->
|
2013-05-16 19:42:08 -05:00
|
|
|
@fn(ast::ident)->ast::ident {
|
|
|
|
|id : ast::ident|
|
|
|
|
ast::ident{
|
2013-05-17 12:18:09 -05:00
|
|
|
name: id.name,
|
2013-05-21 18:57:21 -05:00
|
|
|
ctxt: new_rename(from,to,id.ctxt)
|
2013-05-16 19:42:08 -05:00
|
|
|
}
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
2013-05-16 19:42:08 -05:00
|
|
|
|
2013-04-03 12:28:14 -05:00
|
|
|
// update the ctxts in a path to get a mark node
|
2013-05-21 18:57:21 -05:00
|
|
|
pub fn new_ident_marker(mark: uint) ->
|
2013-05-16 19:42:08 -05:00
|
|
|
@fn(ast::ident)->ast::ident {
|
|
|
|
|id : ast::ident|
|
|
|
|
ast::ident{
|
2013-05-17 12:18:09 -05:00
|
|
|
name: id.name,
|
2013-05-21 18:57:21 -05:00
|
|
|
ctxt: new_mark(mark,id.ctxt)
|
2013-05-16 19:42:08 -05:00
|
|
|
}
|
2013-04-03 12:28:14 -05:00
|
|
|
}
|
2013-05-16 19:42:08 -05:00
|
|
|
|
|
|
|
// perform resolution (in the MTWT sense) on all of the
|
|
|
|
// idents in the tree. This is the final step in expansion.
|
2013-05-21 18:57:21 -05:00
|
|
|
pub fn new_ident_resolver() ->
|
2013-05-16 19:42:08 -05:00
|
|
|
@fn(ast::ident)->ast::ident {
|
|
|
|
|id : ast::ident|
|
|
|
|
ast::ident {
|
2013-05-21 18:57:21 -05:00
|
|
|
name : resolve(id),
|
2013-05-16 19:42:08 -05:00
|
|
|
ctxt : illegal_ctxt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-03 12:28:14 -05:00
|
|
|
|
2013-02-26 12:15:29 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::*;
|
2013-02-25 13:11:21 -06:00
|
|
|
use ast;
|
2013-05-16 19:42:08 -05:00
|
|
|
use ast::{attribute_, attr_outer, meta_word, empty_ctxt};
|
2013-02-25 13:11:21 -06:00
|
|
|
use codemap;
|
|
|
|
use codemap::spanned;
|
|
|
|
use parse;
|
2013-06-08 11:21:11 -05:00
|
|
|
use parse::token::{intern, get_ident_interner};
|
2013-05-21 18:57:21 -05:00
|
|
|
use print::pprust;
|
2013-05-17 13:11:24 -05:00
|
|
|
use util::parser_testing::{string_to_item, string_to_pat, strs_to_idents};
|
2013-06-08 11:21:11 -05:00
|
|
|
use visit::{mk_vt};
|
2013-02-26 12:15:29 -06:00
|
|
|
|
|
|
|
// make sure that fail! is present
|
|
|
|
#[test] fn fail_exists_test () {
|
2013-06-12 12:02:55 -05:00
|
|
|
let src = @"fn main() { fail!(\"something appropriately gloomy\");}";
|
2013-02-26 12:15:29 -06:00
|
|
|
let sess = parse::new_parse_sess(None);
|
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2013-06-12 12:02:55 -05:00
|
|
|
@"<test>",
|
|
|
|
src,
|
2013-05-12 15:50:57 -05:00
|
|
|
~[],sess);
|
|
|
|
expand_crate(sess,~[],crate_ast);
|
2013-02-26 12:15:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// these following tests are quite fragile, in that they don't test what
|
|
|
|
// *kind* of failure occurs.
|
|
|
|
|
|
|
|
// make sure that macros can leave scope
|
|
|
|
#[should_fail]
|
|
|
|
#[test] fn macros_cant_escape_fns_test () {
|
2013-06-12 12:02:55 -05:00
|
|
|
let src = @"fn bogus() {macro_rules! z (() => (3+4))}\
|
2013-02-26 12:15:29 -06:00
|
|
|
fn inty() -> int { z!() }";
|
|
|
|
let sess = parse::new_parse_sess(None);
|
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2013-06-12 12:02:55 -05:00
|
|
|
@"<test>",
|
|
|
|
src,
|
2013-05-12 15:50:57 -05:00
|
|
|
~[],sess);
|
2013-02-26 12:15:29 -06:00
|
|
|
// should fail:
|
2013-05-12 15:50:57 -05:00
|
|
|
expand_crate(sess,~[],crate_ast);
|
2013-02-26 12:15:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// make sure that macros can leave scope for modules
|
|
|
|
#[should_fail]
|
|
|
|
#[test] fn macros_cant_escape_mods_test () {
|
2013-06-12 12:02:55 -05:00
|
|
|
let src = @"mod foo {macro_rules! z (() => (3+4))}\
|
2013-02-26 12:15:29 -06:00
|
|
|
fn inty() -> int { z!() }";
|
|
|
|
let sess = parse::new_parse_sess(None);
|
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2013-06-12 12:02:55 -05:00
|
|
|
@"<test>",
|
|
|
|
src,
|
2013-05-12 15:50:57 -05:00
|
|
|
~[],sess);
|
2013-02-26 12:15:29 -06:00
|
|
|
// should fail:
|
2013-05-12 15:50:57 -05:00
|
|
|
expand_crate(sess,~[],crate_ast);
|
2013-02-26 12:15:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// macro_escape modules shouldn't cause macros to leave scope
|
|
|
|
#[test] fn macros_can_escape_flattened_mods_test () {
|
2013-06-12 12:02:55 -05:00
|
|
|
let src = @"#[macro_escape] mod foo {macro_rules! z (() => (3+4))}\
|
2013-02-26 12:15:29 -06:00
|
|
|
fn inty() -> int { z!() }";
|
|
|
|
let sess = parse::new_parse_sess(None);
|
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2013-06-12 12:02:55 -05:00
|
|
|
@"<test>",
|
|
|
|
src,
|
2013-05-12 15:50:57 -05:00
|
|
|
~[], sess);
|
2013-02-26 12:15:29 -06:00
|
|
|
// should fail:
|
2013-05-12 15:50:57 -05:00
|
|
|
expand_crate(sess,~[],crate_ast);
|
2013-02-26 12:15:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn core_macros_must_parse () {
|
2013-06-12 12:02:55 -05:00
|
|
|
let src = @"
|
2013-02-26 12:15:29 -06:00
|
|
|
pub mod macros {
|
|
|
|
macro_rules! ignore (($($x:tt)*) => (()))
|
|
|
|
|
|
|
|
macro_rules! error ( ($( $arg:expr ),+) => (
|
|
|
|
log(::core::error, fmt!( $($arg),+ )) ))
|
|
|
|
}";
|
|
|
|
let sess = parse::new_parse_sess(None);
|
|
|
|
let cfg = ~[];
|
|
|
|
let item_ast = parse::parse_item_from_source_str(
|
2013-06-12 12:02:55 -05:00
|
|
|
@"<test>",
|
|
|
|
src,
|
|
|
|
cfg,~[make_dummy_attr (@"macro_escape")],sess);
|
2013-02-26 12:15:29 -06:00
|
|
|
match item_ast {
|
|
|
|
Some(_) => (), // success
|
2013-05-05 17:18:51 -05:00
|
|
|
None => fail!("expected this to parse")
|
2013-02-26 12:15:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn test_contains_flatten (){
|
2013-06-12 12:02:55 -05:00
|
|
|
let attr1 = make_dummy_attr (@"foo");
|
|
|
|
let attr2 = make_dummy_attr (@"bar");
|
|
|
|
let escape_attr = make_dummy_attr (@"macro_escape");
|
2013-02-26 12:15:29 -06:00
|
|
|
let attrs1 = ~[attr1, escape_attr, attr2];
|
2013-03-13 17:30:37 -05:00
|
|
|
assert_eq!(contains_macro_escape (attrs1),true);
|
2013-02-26 12:15:29 -06:00
|
|
|
let attrs2 = ~[attr1,attr2];
|
2013-03-13 17:30:37 -05:00
|
|
|
assert_eq!(contains_macro_escape (attrs2),false);
|
2013-02-26 12:15:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// make a "meta_word" outer attribute with the given name
|
2013-06-12 12:02:55 -05:00
|
|
|
fn make_dummy_attr(s: @str) -> ast::attribute {
|
2013-02-28 09:25:31 -06:00
|
|
|
spanned {
|
|
|
|
span:codemap::dummy_sp(),
|
|
|
|
node: attribute_ {
|
|
|
|
style: attr_outer,
|
|
|
|
value: @spanned {
|
|
|
|
node: meta_word(s),
|
|
|
|
span: codemap::dummy_sp(),
|
|
|
|
},
|
|
|
|
is_sugared_doc: false,
|
|
|
|
}
|
|
|
|
}
|
2013-02-26 12:15:29 -06:00
|
|
|
}
|
|
|
|
|
2013-05-16 19:42:08 -05:00
|
|
|
#[test]
|
|
|
|
fn renaming () {
|
2013-06-12 12:02:55 -05:00
|
|
|
let maybe_item_ast = string_to_item(@"fn a() -> int { let b = 13; b }");
|
2013-05-16 19:42:08 -05:00
|
|
|
let item_ast = match maybe_item_ast {
|
|
|
|
Some(x) => x,
|
|
|
|
None => fail!("test case fail")
|
|
|
|
};
|
2013-05-21 18:57:21 -05:00
|
|
|
let a_name = intern("a");
|
|
|
|
let a2_name = intern("a2");
|
2013-05-17 12:18:09 -05:00
|
|
|
let renamer = new_ident_renamer(ast::ident{name:a_name,ctxt:empty_ctxt},
|
2013-05-21 18:57:21 -05:00
|
|
|
a2_name);
|
2013-05-16 19:42:08 -05:00
|
|
|
let renamed_ast = fun_to_ident_folder(renamer).fold_item(item_ast).get();
|
2013-05-21 18:57:21 -05:00
|
|
|
let resolver = new_ident_resolver();
|
2013-05-16 19:42:08 -05:00
|
|
|
let resolved_ast = fun_to_ident_folder(resolver).fold_item(renamed_ast).get();
|
2013-05-21 18:57:21 -05:00
|
|
|
let resolved_as_str = pprust::item_to_str(resolved_ast,
|
|
|
|
get_ident_interner());
|
|
|
|
assert_eq!(resolved_as_str,~"fn a2() -> int { let b = 13; b }");
|
|
|
|
|
|
|
|
|
2013-05-16 19:42:08 -05:00
|
|
|
}
|
|
|
|
|
2013-05-21 18:57:21 -05:00
|
|
|
// sigh... it looks like I have two different renaming mechanisms, now...
|
|
|
|
|
2013-06-04 16:56:33 -05:00
|
|
|
#[test]
|
|
|
|
fn pat_idents(){
|
2013-06-12 12:02:55 -05:00
|
|
|
let pat = string_to_pat(@"(a,Foo{x:c @ (b,9),y:Bar(4,d)})");
|
2013-06-04 16:56:33 -05:00
|
|
|
let pat_idents = new_name_finder();
|
|
|
|
let idents = @mut ~[];
|
2013-06-12 16:31:07 -05:00
|
|
|
((*pat_idents).visit_pat)(pat, (idents, mk_vt(pat_idents)));
|
2013-06-04 16:56:33 -05:00
|
|
|
assert_eq!(idents,@mut strs_to_idents(~["a","c","b","d"]));
|
|
|
|
}
|
2013-02-26 12:15:29 -06:00
|
|
|
}
|