2012-12-03 16:48:01 -08: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-07-11 23:07:34 -07:00
|
|
|
use ast::{Block, Crate, NodeId, DeclLocal, Expr_, ExprMac, SyntaxContext};
|
2013-06-07 12:26:34 -07:00
|
|
|
use ast::{Local, Ident, mac_invoc_tt};
|
2013-06-25 11:40:51 -07:00
|
|
|
use ast::{item_mac, Mrk, Stmt_, StmtDecl, StmtMac, StmtExpr, StmtSemi};
|
2013-07-11 23:07:34 -07:00
|
|
|
use ast::{token_tree};
|
2012-12-23 17:41:37 -05:00
|
|
|
use ast;
|
2013-07-14 15:25:04 -04:00
|
|
|
use ast_util::{mtwt_outer_mark, new_rename, new_mark};
|
2013-02-11 08:36:42 -08:00
|
|
|
use attr;
|
2013-07-19 21:51:37 +10:00
|
|
|
use attr::AttrMetaMethods;
|
2013-02-25 14:11:21 -05:00
|
|
|
use codemap;
|
2013-08-31 18:13:04 +02:00
|
|
|
use codemap::{Span, Spanned, spanned, ExpnInfo, NameAndSpan};
|
2012-09-04 11:37:29 -07:00
|
|
|
use ext::base::*;
|
2012-12-23 17:41:37 -05:00
|
|
|
use fold::*;
|
2013-08-07 09:47:28 -07:00
|
|
|
use opt_vec;
|
2013-02-25 14:11:21 -05:00
|
|
|
use parse;
|
2013-03-26 16:38:07 -04:00
|
|
|
use parse::{parse_item_from_source_str};
|
2013-07-29 17:25:00 -07:00
|
|
|
use parse::token;
|
2013-06-25 11:43:52 -07:00
|
|
|
use parse::token::{fresh_mark, fresh_name, ident_to_str, intern};
|
2013-06-04 14:56:33 -07:00
|
|
|
use visit;
|
2013-06-09 02:21:11 +10:00
|
|
|
use visit::Visitor;
|
2011-08-05 13:06:11 -07:00
|
|
|
|
2013-06-24 20:40:33 -04:00
|
|
|
use std::vec;
|
2013-05-24 19:35:29 -07:00
|
|
|
|
2013-03-01 13:30:06 -08:00
|
|
|
pub fn expand_expr(extsbox: @mut SyntaxEnv,
|
2013-05-17 21:27:17 +10:00
|
|
|
cx: @ExtCtxt,
|
2013-09-02 03:45:37 +02:00
|
|
|
e: &Expr_,
|
2013-08-31 18:13:04 +02:00
|
|
|
s: Span,
|
2013-03-12 13:00:50 -07:00
|
|
|
fld: @ast_fold,
|
2013-09-02 03:45:37 +02:00
|
|
|
orig: @fn(&Expr_, Span, @ast_fold) -> (Expr_, Span))
|
|
|
|
-> (Expr_, Span) {
|
2013-02-17 22:20:36 -08:00
|
|
|
match *e {
|
|
|
|
// expr_mac should really be expr_ext or something; it's the
|
|
|
|
// entry-point for all syntax extensions.
|
2013-09-02 03:45:37 +02:00
|
|
|
ExprMac(ref mac) => {
|
2012-12-04 10:50:00 -08:00
|
|
|
match (*mac).node {
|
2013-07-08 15:55:14 -07:00
|
|
|
// it would almost certainly be cleaner to pass the whole
|
|
|
|
// macro invocation in, rather than pulling it apart and
|
|
|
|
// marking the tts and the ctxt separately. This also goes
|
|
|
|
// for the other three macro invocation chunks of code
|
|
|
|
// in this file.
|
2013-03-04 13:58:31 -08:00
|
|
|
// Token-tree macros:
|
2013-07-03 15:16:04 -07:00
|
|
|
mac_invoc_tt(ref pth, ref tts, ctxt) => {
|
2013-08-07 09:47:28 -07:00
|
|
|
if (pth.segments.len() > 1u) {
|
2013-03-04 13:58:31 -08:00
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
|
|
|
fmt!("expected macro name without module \
|
2013-03-04 16:50:52 -08:00
|
|
|
separators"));
|
2013-03-04 13:58:31 -08:00
|
|
|
}
|
2013-08-07 09:47:28 -07:00
|
|
|
let extname = &pth.segments[0].identifier;
|
2013-06-04 12:34:25 -07:00
|
|
|
let extnamestr = ident_to_str(extname);
|
2013-02-27 11:03:21 -08:00
|
|
|
// leaving explicit deref here to highlight unbox op:
|
2013-05-17 10:18:09 -07:00
|
|
|
match (*extsbox).find(&extname.name) {
|
2013-02-17 22:20:36 -08:00
|
|
|
None => {
|
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
2013-06-13 03:02:55 +10:00
|
|
|
fmt!("macro undefined: '%s'", extnamestr))
|
2013-02-21 00:16:31 -08:00
|
|
|
}
|
2013-05-28 14:53:38 -07:00
|
|
|
Some(@SE(NormalTT(expandfun, exp_span))) => {
|
2013-07-02 18:31:00 +09:00
|
|
|
cx.bt_push(ExpnInfo {
|
2013-02-17 22:20:36 -08:00
|
|
|
call_site: s,
|
|
|
|
callee: NameAndSpan {
|
2013-06-13 03:02:55 +10:00
|
|
|
name: extnamestr,
|
2013-05-28 14:53:38 -07:00
|
|
|
span: exp_span,
|
2013-02-17 22:20:36 -08:00
|
|
|
},
|
2013-07-02 18:31:00 +09:00
|
|
|
});
|
2013-06-25 11:43:52 -07:00
|
|
|
let fm = fresh_mark();
|
2013-06-29 05:59:08 -07:00
|
|
|
// mark before:
|
|
|
|
let marked_before = mark_tts(*tts,fm);
|
2013-07-08 15:55:14 -07:00
|
|
|
let marked_ctxt = new_mark(fm, ctxt);
|
2013-07-11 22:58:14 -07:00
|
|
|
let expanded =
|
|
|
|
match expandfun(cx, mac.span, marked_before, marked_ctxt) {
|
|
|
|
MRExpr(e) => e,
|
|
|
|
MRAny(expr_maker,_,_) => expr_maker(),
|
|
|
|
_ => {
|
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
|
|
|
fmt!(
|
|
|
|
"non-expr macro in expr pos: %s",
|
|
|
|
extnamestr
|
|
|
|
)
|
2013-02-17 22:20:36 -08:00
|
|
|
)
|
2013-07-11 22:58:14 -07:00
|
|
|
}
|
|
|
|
};
|
2013-06-29 05:59:08 -07:00
|
|
|
// mark after:
|
|
|
|
let marked_after = mark_expr(expanded,fm);
|
2013-02-17 22:20:36 -08:00
|
|
|
|
|
|
|
//keep going, outside-in
|
2013-02-24 21:27:51 -08:00
|
|
|
let fully_expanded =
|
2013-06-29 05:59:08 -07:00
|
|
|
fld.fold_expr(marked_after).node.clone();
|
2013-02-17 22:20:36 -08:00
|
|
|
cx.bt_pop();
|
|
|
|
|
|
|
|
(fully_expanded, s)
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
2013-06-13 03:02:55 +10:00
|
|
|
fmt!("'%s' is not a tt-style macro", extnamestr)
|
2013-02-17 22:20:36 -08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2011-07-06 15:22:23 -07:00
|
|
|
}
|
|
|
|
}
|
2013-02-17 22:20:36 -08:00
|
|
|
}
|
2013-07-29 17:25:00 -07:00
|
|
|
|
|
|
|
// Desugar expr_for_loop
|
2013-08-03 12:45:23 -04:00
|
|
|
// From: `for <src_pat> in <src_expr> <src_loop_block>`
|
2013-09-08 22:08:01 +10:00
|
|
|
ast::ExprForLoop(src_pat, src_expr, ref src_loop_block, opt_ident) => {
|
2013-07-29 17:25:00 -07:00
|
|
|
let src_pat = src_pat.clone();
|
|
|
|
let src_expr = src_expr.clone();
|
|
|
|
|
|
|
|
// Expand any interior macros etc.
|
|
|
|
// NB: we don't fold pats yet. Curious.
|
|
|
|
let src_expr = fld.fold_expr(src_expr).clone();
|
|
|
|
let src_loop_block = fld.fold_block(src_loop_block).clone();
|
|
|
|
|
|
|
|
let span = s;
|
|
|
|
let lo = s.lo;
|
|
|
|
let hi = s.hi;
|
|
|
|
|
2013-08-31 18:13:04 +02:00
|
|
|
pub fn mk_expr(cx: @ExtCtxt, span: Span,
|
2013-09-02 03:45:37 +02:00
|
|
|
node: Expr_) -> @ast::Expr {
|
|
|
|
@ast::Expr {
|
2013-07-29 17:25:00 -07:00
|
|
|
id: cx.next_id(),
|
|
|
|
node: node,
|
|
|
|
span: span,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_block(cx: @ExtCtxt,
|
2013-09-02 03:45:37 +02:00
|
|
|
stmts: &[@ast::Stmt],
|
|
|
|
expr: Option<@ast::Expr>,
|
2013-08-31 18:13:04 +02:00
|
|
|
span: Span) -> ast::Block {
|
2013-07-29 17:25:00 -07:00
|
|
|
ast::Block {
|
|
|
|
view_items: ~[],
|
|
|
|
stmts: stmts.to_owned(),
|
|
|
|
expr: expr,
|
|
|
|
id: cx.next_id(),
|
|
|
|
rules: ast::DefaultBlock,
|
|
|
|
span: span,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-02 02:50:59 +02:00
|
|
|
fn mk_simple_path(ident: ast::Ident, span: Span) -> ast::Path {
|
2013-07-29 17:25:00 -07:00
|
|
|
ast::Path {
|
|
|
|
span: span,
|
|
|
|
global: false,
|
2013-08-07 09:47:28 -07:00
|
|
|
segments: ~[
|
|
|
|
ast::PathSegment {
|
|
|
|
identifier: ident,
|
|
|
|
lifetime: None,
|
|
|
|
types: opt_vec::Empty,
|
|
|
|
}
|
|
|
|
],
|
2013-07-29 17:25:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// to:
|
|
|
|
//
|
|
|
|
// {
|
|
|
|
// let _i = &mut <src_expr>;
|
|
|
|
// loop {
|
|
|
|
// match i.next() {
|
|
|
|
// None => break,
|
|
|
|
// Some(<src_pat>) => <src_loop_block>
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
let local_ident = token::gensym_ident("i");
|
|
|
|
let some_ident = token::str_to_ident("Some");
|
|
|
|
let none_ident = token::str_to_ident("None");
|
|
|
|
let next_ident = token::str_to_ident("next");
|
|
|
|
|
|
|
|
let local_path_1 = mk_simple_path(local_ident, span);
|
|
|
|
let local_path_2 = mk_simple_path(local_ident, span);
|
|
|
|
let some_path = mk_simple_path(some_ident, span);
|
|
|
|
let none_path = mk_simple_path(none_ident, span);
|
|
|
|
|
|
|
|
// `let i = &mut <src_expr>`
|
|
|
|
let iter_decl_stmt = {
|
|
|
|
let ty = ast::Ty {
|
|
|
|
id: cx.next_id(),
|
|
|
|
node: ast::ty_infer,
|
|
|
|
span: span
|
|
|
|
};
|
|
|
|
let local = @ast::Local {
|
|
|
|
is_mutbl: false,
|
|
|
|
ty: ty,
|
2013-09-02 03:45:37 +02:00
|
|
|
pat: @ast::Pat {
|
2013-07-29 17:25:00 -07:00
|
|
|
id: cx.next_id(),
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::PatIdent(ast::BindInfer, local_path_1, None),
|
2013-07-29 17:25:00 -07:00
|
|
|
span: src_expr.span
|
|
|
|
},
|
|
|
|
init: Some(mk_expr(cx, src_expr.span,
|
2013-09-02 03:45:37 +02:00
|
|
|
ast::ExprAddrOf(ast::MutMutable, src_expr))),
|
2013-07-29 17:25:00 -07:00
|
|
|
id: cx.next_id(),
|
|
|
|
span: src_expr.span,
|
|
|
|
};
|
|
|
|
let e = @spanned(src_expr.span.lo,
|
|
|
|
src_expr.span.hi,
|
2013-09-02 03:45:37 +02:00
|
|
|
ast::DeclLocal(local));
|
|
|
|
@spanned(lo, hi, ast::StmtDecl(e, cx.next_id()))
|
2013-07-29 17:25:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// `None => break;`
|
|
|
|
let none_arm = {
|
2013-09-02 03:45:37 +02:00
|
|
|
let break_expr = mk_expr(cx, span, ast::ExprBreak(None));
|
|
|
|
let break_stmt = @spanned(lo, hi, ast::StmtExpr(break_expr, cx.next_id()));
|
2013-07-29 17:25:00 -07:00
|
|
|
let none_block = mk_block(cx, [break_stmt], None, span);
|
2013-09-02 03:45:37 +02:00
|
|
|
let none_pat = @ast::Pat {
|
2013-07-29 17:25:00 -07:00
|
|
|
id: cx.next_id(),
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::PatIdent(ast::BindInfer, none_path, None),
|
2013-07-29 17:25:00 -07:00
|
|
|
span: span
|
|
|
|
};
|
2013-09-02 03:45:37 +02:00
|
|
|
ast::Arm {
|
2013-07-29 17:25:00 -07:00
|
|
|
pats: ~[none_pat],
|
|
|
|
guard: None,
|
|
|
|
body: none_block
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// `Some(<src_pat>) => <src_loop_block>`
|
|
|
|
let some_arm = {
|
2013-09-02 03:45:37 +02:00
|
|
|
let pat = @ast::Pat {
|
2013-07-29 17:25:00 -07:00
|
|
|
id: cx.next_id(),
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::PatEnum(some_path, Some(~[src_pat])),
|
2013-07-29 17:25:00 -07:00
|
|
|
span: src_pat.span
|
|
|
|
};
|
2013-09-02 03:45:37 +02:00
|
|
|
ast::Arm {
|
2013-07-29 17:25:00 -07:00
|
|
|
pats: ~[pat],
|
|
|
|
guard: None,
|
|
|
|
body: src_loop_block
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// `match i.next() { ... }`
|
|
|
|
let match_stmt = {
|
2013-09-02 03:45:37 +02:00
|
|
|
let local_expr = mk_expr(cx, span, ast::ExprPath(local_path_2));
|
2013-07-29 17:25:00 -07:00
|
|
|
let next_call_expr = mk_expr(cx, span,
|
2013-09-02 03:45:37 +02:00
|
|
|
ast::ExprMethodCall(cx.next_id(),
|
2013-07-29 17:25:00 -07:00
|
|
|
local_expr, next_ident,
|
|
|
|
~[], ~[], ast::NoSugar));
|
2013-09-02 03:45:37 +02:00
|
|
|
let match_expr = mk_expr(cx, span, ast::ExprMatch(next_call_expr,
|
2013-07-29 17:25:00 -07:00
|
|
|
~[none_arm, some_arm]));
|
2013-09-02 03:45:37 +02:00
|
|
|
@spanned(lo, hi, ast::StmtExpr(match_expr, cx.next_id()))
|
2013-07-29 17:25:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// `loop { ... }`
|
|
|
|
let loop_block = {
|
|
|
|
let loop_body_block = mk_block(cx, [match_stmt], None, span);
|
2013-09-08 22:08:01 +10:00
|
|
|
let loop_body_expr = mk_expr(cx, span, ast::ExprLoop(loop_body_block, opt_ident));
|
2013-09-02 03:45:37 +02:00
|
|
|
let loop_body_stmt = @spanned(lo, hi, ast::StmtExpr(loop_body_expr, cx.next_id()));
|
2013-07-29 17:25:00 -07:00
|
|
|
mk_block(cx, [iter_decl_stmt,
|
|
|
|
loop_body_stmt],
|
|
|
|
None, span)
|
|
|
|
};
|
|
|
|
|
2013-09-02 03:45:37 +02:00
|
|
|
(ast::ExprBlock(loop_block), span)
|
2013-07-29 17:25:00 -07:00
|
|
|
}
|
|
|
|
|
2013-02-17 22:20:36 -08:00
|
|
|
_ => orig(e, s, fld)
|
|
|
|
}
|
2011-07-06 15:22:23 -07:00
|
|
|
}
|
|
|
|
|
2012-07-27 17:42:32 -07:00
|
|
|
// This is a secondary mechanism for invoking syntax extensions on items:
|
2012-12-17 19:31:04 -08:00
|
|
|
// "decorator" attributes, such as #[auto_encode]. These are invoked by an
|
2012-07-27 17:42:32 -07: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 16:45:27 -08:00
|
|
|
// these do _not_ work for macro extensions, just ItemDecorator ones.
|
2012-07-27 17:42:32 -07: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 13:30:06 -08:00
|
|
|
pub fn expand_mod_items(extsbox: @mut SyntaxEnv,
|
2013-05-17 21:27:17 +10:00
|
|
|
cx: @ExtCtxt,
|
2013-03-01 13:30:06 -08:00
|
|
|
module_: &ast::_mod,
|
2013-03-12 13:00:50 -07:00
|
|
|
fld: @ast_fold,
|
|
|
|
orig: @fn(&ast::_mod, @ast_fold) -> ast::_mod)
|
2013-01-29 14:41:40 -08:00
|
|
|
-> ast::_mod {
|
2013-03-15 15:24:24 -04:00
|
|
|
|
2012-03-02 14:36:22 -08:00
|
|
|
// Fold the contents first:
|
2012-07-31 16:38:41 -07:00
|
|
|
let module_ = orig(module_, fld);
|
2012-03-02 14:36:22 -08: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 16:38:41 -07:00
|
|
|
let new_items = do vec::flat_map(module_.items) |item| {
|
2013-06-08 15:12:39 +10:00
|
|
|
do item.attrs.rev_iter().fold(~[*item]) |items, attr| {
|
2013-07-19 21:51:37 +10:00
|
|
|
let mname = attr.name();
|
2013-02-11 08:36:42 -08:00
|
|
|
|
2013-06-13 03:02:55 +10:00
|
|
|
match (*extsbox).find(&intern(mname)) {
|
2013-02-26 10:15:29 -08:00
|
|
|
Some(@SE(ItemDecorator(dec_fn))) => {
|
2013-07-02 18:31:00 +09:00
|
|
|
cx.bt_push(ExpnInfo {
|
2013-02-21 00:16:31 -08:00
|
|
|
call_site: attr.span,
|
|
|
|
callee: NameAndSpan {
|
2013-06-13 03:02:55 +10:00
|
|
|
name: mname,
|
2013-02-21 00:16:31 -08:00
|
|
|
span: None
|
|
|
|
}
|
2013-07-02 18:31:00 +09:00
|
|
|
});
|
2012-12-12 10:44:01 -08:00
|
|
|
let r = dec_fn(cx, attr.span, attr.node.value, items);
|
|
|
|
cx.bt_pop();
|
|
|
|
r
|
2013-02-26 10:15:29 -08:00
|
|
|
},
|
|
|
|
_ => items,
|
2012-03-02 14:36:22 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-01-15 16:05:20 -08:00
|
|
|
ast::_mod { items: new_items, ..module_ }
|
2012-03-02 14:36:22 -08:00
|
|
|
}
|
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
// eval $e with a new exts frame:
|
|
|
|
macro_rules! with_exts_frame (
|
2013-05-08 15:27:29 -07:00
|
|
|
($extsboxexpr:expr,$macros_escape:expr,$e:expr) =>
|
2013-02-26 10:15:29 -08:00
|
|
|
({let extsbox = $extsboxexpr;
|
|
|
|
let oldexts = *extsbox;
|
|
|
|
*extsbox = oldexts.push_frame();
|
2013-05-08 15:27:29 -07:00
|
|
|
extsbox.insert(intern(special_block_name),
|
|
|
|
@BlockInfo(BlockInfo{macros_escape:$macros_escape,pending_renames:@mut ~[]}));
|
2013-02-26 10:15:29 -08:00
|
|
|
let result = $e;
|
|
|
|
*extsbox = oldexts;
|
|
|
|
result
|
|
|
|
})
|
|
|
|
)
|
|
|
|
|
2013-05-08 15:27:29 -07:00
|
|
|
static special_block_name : &'static str = " block";
|
|
|
|
|
2012-07-27 11:19:21 -07:00
|
|
|
// When we enter a module, record it, for the sake of `module!`
|
2013-02-26 10:15:29 -08:00
|
|
|
pub fn expand_item(extsbox: @mut SyntaxEnv,
|
2013-05-17 21:27:17 +10:00
|
|
|
cx: @ExtCtxt,
|
2013-03-01 13:30:06 -08:00
|
|
|
it: @ast::item,
|
2013-03-12 13:00:50 -07:00
|
|
|
fld: @ast_fold,
|
|
|
|
orig: @fn(@ast::item, @ast_fold) -> Option<@ast::item>)
|
2013-01-29 14:41:40 -08:00
|
|
|
-> Option<@ast::item> {
|
2013-07-26 12:57:30 -04:00
|
|
|
match it.node {
|
|
|
|
ast::item_mac(*) => expand_item_mac(extsbox, cx, it, fld),
|
|
|
|
ast::item_mod(_) | ast::item_foreign_mod(_) => {
|
|
|
|
cx.mod_push(it.ident);
|
|
|
|
let macro_escape = contains_macro_escape(it.attrs);
|
|
|
|
let result = with_exts_frame!(extsbox,macro_escape,orig(it,fld));
|
|
|
|
cx.mod_pop();
|
|
|
|
result
|
|
|
|
},
|
|
|
|
_ => orig(it,fld)
|
2012-07-06 12:17:34 -07:00
|
|
|
}
|
2012-05-18 10:00:49 -07:00
|
|
|
}
|
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
// does this attribute list contain "macro_escape" ?
|
2013-07-19 21:51:37 +10:00
|
|
|
pub fn contains_macro_escape(attrs: &[ast::Attribute]) -> bool {
|
|
|
|
attr::contains_name(attrs, "macro_escape")
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
2012-07-27 11:19:21 -07:00
|
|
|
// Support for item-position macro invocations, exactly the same
|
|
|
|
// logic as for expression-position macro invocations.
|
2013-04-17 12:15:08 -04:00
|
|
|
pub fn expand_item_mac(extsbox: @mut SyntaxEnv,
|
2013-05-17 21:27:17 +10:00
|
|
|
cx: @ExtCtxt, it: @ast::item,
|
2013-03-12 13:00:50 -07:00
|
|
|
fld: @ast_fold)
|
|
|
|
-> Option<@ast::item> {
|
2013-07-08 15:55:14 -07:00
|
|
|
let (pth, tts, ctxt) = match it.node {
|
2013-07-03 15:16:04 -07:00
|
|
|
item_mac(codemap::Spanned { node: mac_invoc_tt(ref pth, ref tts, ctxt), _}) => {
|
2013-07-08 15:55:14 -07:00
|
|
|
(pth, (*tts).clone(), ctxt)
|
2012-12-27 14:36:00 -05:00
|
|
|
}
|
2013-05-19 01:07:44 -04:00
|
|
|
_ => cx.span_bug(it.span, "invalid item macro invocation")
|
2012-12-12 12:25:40 -08:00
|
|
|
};
|
2012-11-17 07:41:36 -05:00
|
|
|
|
2013-08-07 09:47:28 -07:00
|
|
|
let extname = &pth.segments[0].identifier;
|
2013-06-04 12:34:25 -07:00
|
|
|
let extnamestr = ident_to_str(extname);
|
2013-06-29 05:59:08 -07:00
|
|
|
let fm = fresh_mark();
|
2013-05-17 10:18:09 -07:00
|
|
|
let expanded = match (*extsbox).find(&extname.name) {
|
2012-11-17 07:41:36 -05:00
|
|
|
None => cx.span_fatal(pth.span,
|
2013-06-13 03:02:55 +10:00
|
|
|
fmt!("macro undefined: '%s!'", extnamestr)),
|
2012-11-17 07:41:36 -05:00
|
|
|
|
2013-05-28 14:53:38 -07:00
|
|
|
Some(@SE(NormalTT(expander, span))) => {
|
2013-07-03 11:34:01 -07:00
|
|
|
if it.ident.name != parse::token::special_idents::invalid.name {
|
2012-11-08 23:12:45 -05:00
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
fmt!("macro %s! expects no ident argument, \
|
2013-06-13 03:02:55 +10:00
|
|
|
given '%s'", extnamestr,
|
|
|
|
ident_to_str(&it.ident)));
|
2012-11-08 23:12:45 -05:00
|
|
|
}
|
2013-07-02 18:31:00 +09:00
|
|
|
cx.bt_push(ExpnInfo {
|
2013-02-21 00:16:31 -08:00
|
|
|
call_site: it.span,
|
|
|
|
callee: NameAndSpan {
|
2013-06-13 03:02:55 +10:00
|
|
|
name: extnamestr,
|
2013-05-28 14:53:38 -07:00
|
|
|
span: span
|
2013-02-21 00:16:31 -08:00
|
|
|
}
|
2013-07-02 18:31:00 +09:00
|
|
|
});
|
2013-06-29 05:59:08 -07:00
|
|
|
// mark before expansion:
|
2013-07-08 15:55:14 -07:00
|
|
|
let marked_before = mark_tts(tts,fm);
|
|
|
|
let marked_ctxt = new_mark(fm,ctxt);
|
|
|
|
expander(cx, it.span, marked_before, marked_ctxt)
|
2012-11-17 07:41:36 -05:00
|
|
|
}
|
2013-05-28 14:53:38 -07:00
|
|
|
Some(@SE(IdentTT(expander, span))) => {
|
2013-07-03 11:34:01 -07:00
|
|
|
if it.ident.name == parse::token::special_idents::invalid.name {
|
2012-11-08 23:12:45 -05:00
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
fmt!("macro %s! expects an ident argument",
|
2013-06-13 03:02:55 +10:00
|
|
|
extnamestr));
|
2012-11-08 23:12:45 -05:00
|
|
|
}
|
2013-07-02 18:31:00 +09:00
|
|
|
cx.bt_push(ExpnInfo {
|
2013-02-21 00:16:31 -08:00
|
|
|
call_site: it.span,
|
|
|
|
callee: NameAndSpan {
|
2013-06-13 03:02:55 +10:00
|
|
|
name: extnamestr,
|
2013-05-28 14:53:38 -07:00
|
|
|
span: span
|
2013-02-21 00:16:31 -08:00
|
|
|
}
|
2013-07-02 18:31:00 +09:00
|
|
|
});
|
2013-06-29 05:59:08 -07:00
|
|
|
// mark before expansion:
|
|
|
|
let marked_tts = mark_tts(tts,fm);
|
2013-07-08 15:55:14 -07:00
|
|
|
let marked_ctxt = new_mark(fm,ctxt);
|
|
|
|
expander(cx, it.span, it.ident, marked_tts, marked_ctxt)
|
2012-11-17 07:41:36 -05:00
|
|
|
}
|
|
|
|
_ => cx.span_fatal(
|
2013-06-13 03:02:55 +10:00
|
|
|
it.span, fmt!("%s! is not legal in item position", extnamestr))
|
2012-11-17 07:41:36 -05:00
|
|
|
};
|
2012-11-08 23:12:45 -05:00
|
|
|
|
2012-11-17 07:41:36 -05:00
|
|
|
let maybe_it = match expanded {
|
2013-06-29 05:59:08 -07:00
|
|
|
MRItem(it) => mark_item(it,fm).chain(|i| {fld.fold_item(i)}),
|
2013-01-22 16:45:27 -08:00
|
|
|
MRExpr(_) => cx.span_fatal(pth.span,
|
2013-06-13 03:02:55 +10:00
|
|
|
fmt!("expr macro in item position: %s", extnamestr)),
|
2013-06-29 05:59:08 -07:00
|
|
|
MRAny(_, item_maker, _) => item_maker().chain(|i| {mark_item(i,fm)})
|
|
|
|
.chain(|i| {fld.fold_item(i)}),
|
2013-01-22 16:45:27 -08:00
|
|
|
MRDef(ref mdef) => {
|
2013-06-29 05:59:08 -07:00
|
|
|
// yikes... no idea how to apply the mark to this. I'm afraid
|
|
|
|
// we're going to have to wait-and-see on this one.
|
2013-05-08 15:27:29 -07:00
|
|
|
insert_macro(*extsbox,intern(mdef.name), @SE((*mdef).ext));
|
2012-11-17 07:41:36 -05:00
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
|
|
|
cx.bt_pop();
|
|
|
|
return maybe_it;
|
2012-07-05 12:10:33 -07:00
|
|
|
}
|
|
|
|
|
2013-05-08 15:27:29 -07: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 14:56:33 -07:00
|
|
|
_ => fail!(fmt!("special identifier %? was bound to a non-BlockInfo",
|
|
|
|
special_block_name))
|
2013-05-08 15:27:29 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
exts.insert_into_frame(name,transformer,intern(special_block_name),
|
|
|
|
is_non_escaping_block)
|
|
|
|
}
|
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
// expand a stmt
|
2013-03-01 13:30:06 -08:00
|
|
|
pub fn expand_stmt(extsbox: @mut SyntaxEnv,
|
2013-05-17 21:27:17 +10:00
|
|
|
cx: @ExtCtxt,
|
2013-09-02 03:45:37 +02:00
|
|
|
s: &Stmt_,
|
2013-08-31 18:13:04 +02:00
|
|
|
sp: Span,
|
2013-03-12 13:00:50 -07:00
|
|
|
fld: @ast_fold,
|
2013-09-02 03:45:37 +02:00
|
|
|
orig: @fn(&Stmt_, Span, @ast_fold)
|
|
|
|
-> (Option<Stmt_>, Span))
|
|
|
|
-> (Option<Stmt_>, Span) {
|
2013-06-29 05:59:08 -07:00
|
|
|
// why the copying here and not in expand_expr?
|
|
|
|
// looks like classic changed-in-only-one-place
|
2013-07-08 15:55:14 -07:00
|
|
|
let (mac, pth, tts, semi, ctxt) = match *s {
|
2013-09-02 03:45:37 +02:00
|
|
|
StmtMac(ref mac, semi) => {
|
2013-02-17 22:20:36 -08:00
|
|
|
match mac.node {
|
2013-07-03 15:16:04 -07:00
|
|
|
mac_invoc_tt(ref pth, ref tts, ctxt) => {
|
2013-07-08 15:55:14 -07:00
|
|
|
((*mac).clone(), pth, (*tts).clone(), semi, ctxt)
|
2013-02-24 21:27:51 -08:00
|
|
|
}
|
2012-12-12 12:25:40 -08:00
|
|
|
}
|
|
|
|
}
|
2013-06-06 11:42:34 -07:00
|
|
|
_ => return expand_non_macro_stmt(*extsbox,s,sp,fld,orig)
|
2012-12-12 12:25:40 -08:00
|
|
|
};
|
2013-08-07 09:47:28 -07:00
|
|
|
if (pth.segments.len() > 1u) {
|
2013-03-04 13:58:31 -08:00
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
|
|
|
fmt!("expected macro name without module \
|
2013-03-04 16:50:52 -08:00
|
|
|
separators"));
|
2013-03-04 13:58:31 -08:00
|
|
|
}
|
2013-08-07 09:47:28 -07:00
|
|
|
let extname = &pth.segments[0].identifier;
|
2013-06-04 12:34:25 -07:00
|
|
|
let extnamestr = ident_to_str(extname);
|
2013-05-17 10:18:09 -07:00
|
|
|
let (fully_expanded, sp) = match (*extsbox).find(&extname.name) {
|
2012-11-17 07:41:36 -05:00
|
|
|
None =>
|
2013-06-13 03:02:55 +10:00
|
|
|
cx.span_fatal(pth.span, fmt!("macro undefined: '%s'", extnamestr)),
|
2012-11-17 07:41:36 -05:00
|
|
|
|
2013-05-28 14:53:38 -07:00
|
|
|
Some(@SE(NormalTT(expandfun, exp_span))) => {
|
2013-07-02 18:31:00 +09:00
|
|
|
cx.bt_push(ExpnInfo {
|
2013-02-21 00:16:31 -08:00
|
|
|
call_site: sp,
|
2013-05-28 14:53:38 -07:00
|
|
|
callee: NameAndSpan { name: extnamestr, span: exp_span }
|
2013-07-02 18:31:00 +09:00
|
|
|
});
|
2013-06-29 05:59:08 -07:00
|
|
|
let fm = fresh_mark();
|
|
|
|
// mark before expansion:
|
|
|
|
let marked_tts = mark_tts(tts,fm);
|
2013-07-08 15:55:14 -07:00
|
|
|
let marked_ctxt = new_mark(fm,ctxt);
|
|
|
|
let expanded = match expandfun(cx, mac.span, marked_tts, marked_ctxt) {
|
2013-01-22 16:45:27 -08:00
|
|
|
MRExpr(e) =>
|
2013-09-02 03:45:37 +02:00
|
|
|
@codemap::Spanned { node: StmtExpr(e, cx.next_id()),
|
2012-12-27 14:36:00 -05:00
|
|
|
span: e.span},
|
2013-01-22 16:45:27 -08:00
|
|
|
MRAny(_,_,stmt_mkr) => stmt_mkr(),
|
2012-11-17 07:41:36 -05:00
|
|
|
_ => cx.span_fatal(
|
|
|
|
pth.span,
|
2013-06-13 03:02:55 +10:00
|
|
|
fmt!("non-stmt macro in stmt pos: %s", extnamestr))
|
2012-11-17 07:41:36 -05:00
|
|
|
};
|
2013-06-29 05:59:08 -07:00
|
|
|
let marked_after = mark_stmt(expanded,fm);
|
2012-11-17 07:41:36 -05:00
|
|
|
|
|
|
|
//keep going, outside-in
|
2013-06-29 05:59:08 -07:00
|
|
|
let fully_expanded = match fld.fold_stmt(marked_after) {
|
2013-06-04 21:43:41 -07:00
|
|
|
Some(stmt) => {
|
|
|
|
let fully_expanded = &stmt.node;
|
|
|
|
cx.bt_pop();
|
2013-07-02 12:47:32 -07:00
|
|
|
(*fully_expanded).clone()
|
2013-06-04 21:43:41 -07:00
|
|
|
}
|
|
|
|
None => {
|
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
"macro didn't expand to a statement")
|
|
|
|
}
|
|
|
|
};
|
2012-11-17 07:41:36 -05:00
|
|
|
|
2012-11-21 18:49:42 -05:00
|
|
|
(fully_expanded, sp)
|
2012-11-19 20:31:22 -05:00
|
|
|
}
|
2012-11-19 00:30:48 -05:00
|
|
|
|
2012-11-17 07:41:36 -05:00
|
|
|
_ => {
|
|
|
|
cx.span_fatal(pth.span,
|
2013-06-13 03:02:55 +10:00
|
|
|
fmt!("'%s' is not a tt-style macro", extnamestr))
|
2012-11-17 07:41:36 -05:00
|
|
|
}
|
2012-11-21 18:49:42 -05:00
|
|
|
};
|
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
(match fully_expanded {
|
2013-09-02 03:45:37 +02:00
|
|
|
StmtExpr(e, stmt_id) if semi => Some(StmtSemi(e, stmt_id)),
|
2013-06-04 21:43:41 -07:00
|
|
|
_ => { Some(fully_expanded) } /* might already have a semi */
|
2012-11-21 18:49:42 -05:00
|
|
|
}, sp)
|
2012-11-17 07:41:36 -05:00
|
|
|
|
2012-11-19 20:31:22 -05:00
|
|
|
}
|
|
|
|
|
2013-06-25 11:40:51 -07:00
|
|
|
// expand a non-macro stmt. this is essentially the fallthrough for
|
|
|
|
// expand_stmt, above.
|
|
|
|
fn expand_non_macro_stmt (exts: SyntaxEnv,
|
|
|
|
s: &Stmt_,
|
|
|
|
sp: Span,
|
|
|
|
fld: @ast_fold,
|
|
|
|
orig: @fn(&Stmt_, Span, @ast_fold) -> (Option<Stmt_>, Span))
|
|
|
|
-> (Option<Stmt_>,Span) {
|
|
|
|
// is it a let?
|
|
|
|
match *s {
|
|
|
|
StmtDecl(@Spanned{node: DeclLocal(ref local), span: stmt_span}, node_id) => {
|
|
|
|
let block_info = get_block_info(exts);
|
|
|
|
let pending_renames = block_info.pending_renames;
|
|
|
|
|
|
|
|
// take it apart:
|
|
|
|
let @Local{is_mutbl:is_mutbl,
|
|
|
|
ty:_,
|
|
|
|
pat:pat,
|
|
|
|
init:init,
|
|
|
|
id:id,
|
|
|
|
span:span
|
|
|
|
} = *local;
|
|
|
|
// types can't be copied automatically because of the owned ptr in ty_tup...
|
|
|
|
let ty = local.ty.clone();
|
|
|
|
// expand the pat (it might contain exprs... #:(o)>
|
|
|
|
let expanded_pat = fld.fold_pat(pat);
|
|
|
|
// find the pat_idents in the pattern:
|
|
|
|
// oh dear heaven... this is going to include the enum names, as well....
|
2013-06-07 10:41:38 -07:00
|
|
|
// ... but that should be okay, as long as the new names are gensyms
|
|
|
|
// for the old ones.
|
2013-06-25 11:40:51 -07:00
|
|
|
let idents = @mut ~[];
|
|
|
|
let name_finder = new_name_finder(idents);
|
|
|
|
name_finder.visit_pat(expanded_pat,());
|
|
|
|
// generate fresh names, push them to a new pending list
|
|
|
|
let new_pending_renames = @mut ~[];
|
|
|
|
for ident in idents.iter() {
|
|
|
|
let new_name = fresh_name(ident);
|
|
|
|
new_pending_renames.push((*ident,new_name));
|
|
|
|
}
|
2013-07-11 23:07:34 -07:00
|
|
|
let rename_fld = renames_to_fold(new_pending_renames);
|
2013-06-25 11:40:51 -07:00
|
|
|
// rewrite the pattern using the new names (the old ones
|
|
|
|
// have already been applied):
|
|
|
|
let rewritten_pat = rename_fld.fold_pat(expanded_pat);
|
|
|
|
// add them to the existing pending renames:
|
|
|
|
for pr in new_pending_renames.iter() {pending_renames.push(*pr)}
|
|
|
|
// also, don't forget to expand the init:
|
|
|
|
let new_init_opt = init.map(|e| fld.fold_expr(*e));
|
|
|
|
let rewritten_local =
|
|
|
|
@Local{is_mutbl:is_mutbl,
|
|
|
|
ty:ty,
|
|
|
|
pat:rewritten_pat,
|
|
|
|
init:new_init_opt,
|
|
|
|
id:id,
|
|
|
|
span:span};
|
|
|
|
(Some(StmtDecl(@Spanned{node:DeclLocal(rewritten_local),
|
|
|
|
span: stmt_span},node_id)),
|
|
|
|
sp)
|
|
|
|
},
|
|
|
|
_ => {
|
|
|
|
orig(s, sp, fld)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// a visitor that extracts the pat_ident paths
|
2013-07-05 13:57:53 -07:00
|
|
|
// from a given thingy and puts them in a mutable
|
2013-06-25 11:40:51 -07:00
|
|
|
// array (passed in to the traversal)
|
2013-07-19 18:42:11 -07:00
|
|
|
#[deriving(Clone)]
|
|
|
|
struct NewNameFinderContext {
|
2013-09-02 02:50:59 +02:00
|
|
|
ident_accumulator: @mut ~[ast::Ident],
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Visitor<()> for NewNameFinderContext {
|
2013-09-02 03:45:37 +02:00
|
|
|
fn visit_pat(&mut self, pattern: @ast::Pat, _: ()) {
|
2013-07-19 18:42:11 -07:00
|
|
|
match *pattern {
|
|
|
|
// we found a pat_ident!
|
2013-09-02 03:45:37 +02:00
|
|
|
ast::Pat {
|
2013-07-19 18:42:11 -07:00
|
|
|
id: _,
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::PatIdent(_, ref path, ref inner),
|
2013-07-19 18:42:11 -07:00
|
|
|
span: _
|
|
|
|
} => {
|
|
|
|
match path {
|
|
|
|
// a path of length one:
|
|
|
|
&ast::Path {
|
|
|
|
global: false,
|
|
|
|
span: _,
|
2013-08-07 09:47:28 -07:00
|
|
|
segments: [
|
|
|
|
ast::PathSegment {
|
|
|
|
identifier: id,
|
|
|
|
lifetime: _,
|
|
|
|
types: _
|
|
|
|
}
|
|
|
|
]
|
2013-07-19 18:42:11 -07:00
|
|
|
} => self.ident_accumulator.push(id),
|
|
|
|
// I believe these must be enums...
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
// visit optional subpattern of pat_ident:
|
2013-08-03 12:45:23 -04:00
|
|
|
for subpat in inner.iter() {
|
2013-07-19 18:42:11 -07:00
|
|
|
self.visit_pat(*subpat, ())
|
2013-06-04 14:56:33 -07:00
|
|
|
}
|
|
|
|
}
|
2013-07-19 18:42:11 -07:00
|
|
|
// use the default traversal for non-pat_idents
|
2013-08-08 14:23:25 +02:00
|
|
|
_ => visit::walk_pat(self, pattern, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: Methods below can become default methods.
|
|
|
|
|
2013-08-31 18:13:04 +02:00
|
|
|
fn visit_mod(&mut self, module: &ast::_mod, _: Span, _: NodeId, _: ()) {
|
2013-08-08 14:23:25 +02:00
|
|
|
visit::walk_mod(self, module, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_view_item(&mut self, view_item: &ast::view_item, _: ()) {
|
|
|
|
visit::walk_view_item(self, view_item, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_item(&mut self, item: @ast::item, _: ()) {
|
|
|
|
visit::walk_item(self, item, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_foreign_item(&mut self,
|
2013-07-19 18:42:11 -07:00
|
|
|
foreign_item: @ast::foreign_item,
|
|
|
|
_: ()) {
|
2013-08-08 14:23:25 +02:00
|
|
|
visit::walk_foreign_item(self, foreign_item, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_local(&mut self, local: @ast::Local, _: ()) {
|
|
|
|
visit::walk_local(self, local, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_block(&mut self, block: &ast::Block, _: ()) {
|
|
|
|
visit::walk_block(self, block, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-09-02 03:45:37 +02:00
|
|
|
fn visit_stmt(&mut self, stmt: @ast::Stmt, _: ()) {
|
2013-08-08 14:23:25 +02:00
|
|
|
visit::walk_stmt(self, stmt, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-09-02 03:45:37 +02:00
|
|
|
fn visit_arm(&mut self, arm: &ast::Arm, _: ()) {
|
2013-08-08 14:23:25 +02:00
|
|
|
visit::walk_arm(self, arm, ())
|
2013-06-04 14:56:33 -07:00
|
|
|
}
|
2013-07-19 18:42:11 -07:00
|
|
|
|
2013-09-02 03:45:37 +02:00
|
|
|
fn visit_decl(&mut self, decl: @ast::Decl, _: ()) {
|
2013-08-08 14:23:25 +02:00
|
|
|
visit::walk_decl(self, decl, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-09-02 03:45:37 +02:00
|
|
|
fn visit_expr(&mut self, expr: @ast::Expr, _: ()) {
|
2013-08-08 14:23:25 +02:00
|
|
|
visit::walk_expr(self, expr, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-09-02 03:45:37 +02:00
|
|
|
fn visit_expr_post(&mut self, _: @ast::Expr, _: ()) {
|
2013-07-19 18:42:11 -07:00
|
|
|
// Empty!
|
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_ty(&mut self, typ: &ast::Ty, _: ()) {
|
|
|
|
visit::walk_ty(self, typ, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_generics(&mut self, generics: &ast::Generics, _: ()) {
|
|
|
|
visit::walk_generics(self, generics, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_fn(&mut self,
|
2013-07-19 18:42:11 -07:00
|
|
|
function_kind: &visit::fn_kind,
|
|
|
|
function_declaration: &ast::fn_decl,
|
|
|
|
block: &ast::Block,
|
2013-08-31 18:13:04 +02:00
|
|
|
span: Span,
|
2013-07-19 18:42:11 -07:00
|
|
|
node_id: NodeId,
|
|
|
|
_: ()) {
|
2013-08-08 14:23:25 +02:00
|
|
|
visit::walk_fn(self,
|
2013-07-19 18:42:11 -07:00
|
|
|
function_kind,
|
|
|
|
function_declaration,
|
|
|
|
block,
|
|
|
|
span,
|
|
|
|
node_id,
|
|
|
|
())
|
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_ty_method(&mut self, ty_method: &ast::TypeMethod, _: ()) {
|
|
|
|
visit::walk_ty_method(self, ty_method, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_trait_method(&mut self,
|
2013-07-19 18:42:11 -07:00
|
|
|
trait_method: &ast::trait_method,
|
|
|
|
_: ()) {
|
2013-08-08 14:23:25 +02:00
|
|
|
visit::walk_trait_method(self, trait_method, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_struct_def(&mut self,
|
2013-07-19 18:42:11 -07:00
|
|
|
struct_def: @ast::struct_def,
|
2013-09-02 02:50:59 +02:00
|
|
|
ident: Ident,
|
2013-07-19 18:42:11 -07:00
|
|
|
generics: &ast::Generics,
|
|
|
|
node_id: NodeId,
|
|
|
|
_: ()) {
|
2013-08-08 14:23:25 +02:00
|
|
|
visit::walk_struct_def(self,
|
2013-07-19 18:42:11 -07:00
|
|
|
struct_def,
|
|
|
|
ident,
|
|
|
|
generics,
|
|
|
|
node_id,
|
|
|
|
())
|
|
|
|
}
|
|
|
|
|
2013-08-08 14:23:25 +02:00
|
|
|
fn visit_struct_field(&mut self,
|
2013-07-19 18:42:11 -07:00
|
|
|
struct_field: @ast::struct_field,
|
|
|
|
_: ()) {
|
2013-08-08 14:23:25 +02:00
|
|
|
visit::walk_struct_field(self, struct_field, ())
|
2013-07-19 18:42:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-05 13:57:53 -07:00
|
|
|
// a visitor that extracts the paths
|
|
|
|
// from a given thingy and puts them in a mutable
|
2013-06-29 05:59:08 -07:00
|
|
|
// array (passed in to the traversal)
|
|
|
|
#[deriving(Clone)]
|
|
|
|
struct NewPathExprFinderContext {
|
|
|
|
path_accumulator: @mut ~[ast::Path],
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX : YIKES a lot of boilerplate again....
|
|
|
|
impl Visitor<()> for NewPathExprFinderContext {
|
|
|
|
|
|
|
|
fn visit_expr(&mut self, expr: @ast::Expr, _: ()) {
|
|
|
|
match *expr {
|
|
|
|
ast::Expr{id:_,span:_,node:ast::ExprPath(ref p)} => {
|
|
|
|
self.path_accumulator.push(p.clone());
|
|
|
|
// not calling visit_path, should be fine.
|
|
|
|
}
|
|
|
|
_ => visit::walk_expr(self,expr,())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// XXX: Methods below can become default methods.
|
|
|
|
|
|
|
|
fn visit_pat(&mut self, pattern: @ast::Pat, _: ()) {
|
|
|
|
visit::walk_pat(self,pattern,())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_mod(&mut self, module: &ast::_mod, _: Span, _: NodeId, _: ()) {
|
|
|
|
visit::walk_mod(self, module, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_view_item(&mut self, view_item: &ast::view_item, _: ()) {
|
|
|
|
visit::walk_view_item(self, view_item, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_item(&mut self, item: @ast::item, _: ()) {
|
|
|
|
visit::walk_item(self, item, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_foreign_item(&mut self,
|
|
|
|
foreign_item: @ast::foreign_item,
|
|
|
|
_: ()) {
|
|
|
|
visit::walk_foreign_item(self, foreign_item, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_local(&mut self, local: @ast::Local, _: ()) {
|
|
|
|
visit::walk_local(self, local, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_block(&mut self, block: &ast::Block, _: ()) {
|
|
|
|
visit::walk_block(self, block, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_stmt(&mut self, stmt: @ast::Stmt, _: ()) {
|
|
|
|
visit::walk_stmt(self, stmt, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_arm(&mut self, arm: &ast::Arm, _: ()) {
|
|
|
|
visit::walk_arm(self, arm, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_decl(&mut self, decl: @ast::Decl, _: ()) {
|
|
|
|
visit::walk_decl(self, decl, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_expr_post(&mut self, _: @ast::Expr, _: ()) {
|
|
|
|
// Empty!
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_ty(&mut self, typ: &ast::Ty, _: ()) {
|
|
|
|
visit::walk_ty(self, typ, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_generics(&mut self, generics: &ast::Generics, _: ()) {
|
|
|
|
visit::walk_generics(self, generics, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_fn(&mut self,
|
|
|
|
function_kind: &visit::fn_kind,
|
|
|
|
function_declaration: &ast::fn_decl,
|
|
|
|
block: &ast::Block,
|
|
|
|
span: Span,
|
|
|
|
node_id: NodeId,
|
|
|
|
_: ()) {
|
|
|
|
visit::walk_fn(self,
|
|
|
|
function_kind,
|
|
|
|
function_declaration,
|
|
|
|
block,
|
|
|
|
span,
|
|
|
|
node_id,
|
|
|
|
())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_ty_method(&mut self, ty_method: &ast::TypeMethod, _: ()) {
|
|
|
|
visit::walk_ty_method(self, ty_method, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_trait_method(&mut self,
|
|
|
|
trait_method: &ast::trait_method,
|
|
|
|
_: ()) {
|
|
|
|
visit::walk_trait_method(self, trait_method, ())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_struct_def(&mut self,
|
|
|
|
struct_def: @ast::struct_def,
|
|
|
|
ident: Ident,
|
|
|
|
generics: &ast::Generics,
|
|
|
|
node_id: NodeId,
|
|
|
|
_: ()) {
|
|
|
|
visit::walk_struct_def(self,
|
|
|
|
struct_def,
|
|
|
|
ident,
|
|
|
|
generics,
|
|
|
|
node_id,
|
|
|
|
())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_struct_field(&mut self,
|
|
|
|
struct_field: @ast::struct_field,
|
|
|
|
_: ()) {
|
|
|
|
visit::walk_struct_field(self, struct_field, ())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 18:42:11 -07:00
|
|
|
// return a visitor that extracts the pat_ident paths
|
2013-07-05 13:57:53 -07:00
|
|
|
// from a given thingy and puts them in a mutable
|
2013-07-19 18:42:11 -07:00
|
|
|
// array (passed in to the traversal)
|
2013-09-02 02:50:59 +02:00
|
|
|
pub fn new_name_finder(idents: @mut ~[ast::Ident]) -> @mut Visitor<()> {
|
2013-07-19 18:42:11 -07:00
|
|
|
let context = @mut NewNameFinderContext {
|
|
|
|
ident_accumulator: idents,
|
|
|
|
};
|
2013-08-11 13:23:40 -04:00
|
|
|
context as @mut Visitor<()>
|
2013-06-04 14:56:33 -07:00
|
|
|
}
|
|
|
|
|
2013-06-29 05:59:08 -07:00
|
|
|
// return a visitor that extracts the paths
|
|
|
|
// from a given pattern and puts them in a mutable
|
|
|
|
// array (passed in to the traversal)
|
|
|
|
pub fn new_path_finder(paths: @mut ~[ast::Path]) -> @mut Visitor<()> {
|
|
|
|
let context = @mut NewPathExprFinderContext {
|
|
|
|
path_accumulator: paths,
|
|
|
|
};
|
|
|
|
context as @mut Visitor<()>
|
|
|
|
}
|
|
|
|
|
2013-07-05 13:57:53 -07:00
|
|
|
// expand a block. pushes a new exts_frame, then calls expand_block_elts
|
2013-06-25 11:40:51 -07:00
|
|
|
pub fn expand_block(extsbox: @mut SyntaxEnv,
|
|
|
|
_cx: @ExtCtxt,
|
|
|
|
blk: &Block,
|
|
|
|
fld: @ast_fold,
|
2013-07-11 23:07:34 -07:00
|
|
|
_orig: @fn(&Block, @ast_fold) -> Block)
|
2013-06-25 11:40:51 -07:00
|
|
|
-> Block {
|
|
|
|
// see note below about treatment of exts table
|
2013-06-07 14:54:48 -07:00
|
|
|
with_exts_frame!(extsbox,false,
|
|
|
|
expand_block_elts(*extsbox, blk, fld))
|
2013-06-25 11:40:51 -07:00
|
|
|
}
|
|
|
|
|
2013-07-05 13:57:53 -07:00
|
|
|
// expand the elements of a block.
|
2013-06-25 11:40:51 -07:00
|
|
|
pub fn expand_block_elts(exts: SyntaxEnv, b: &Block, fld: @ast_fold) -> Block {
|
|
|
|
let block_info = get_block_info(exts);
|
|
|
|
let pending_renames = block_info.pending_renames;
|
2013-07-11 23:07:34 -07:00
|
|
|
let rename_fld = renames_to_fold(pending_renames);
|
2013-06-25 11:40:51 -07:00
|
|
|
let new_view_items = b.view_items.map(|x| fld.fold_view_item(x));
|
|
|
|
let mut new_stmts = ~[];
|
|
|
|
for x in b.stmts.iter() {
|
|
|
|
match fld.fold_stmt(mustbesome(rename_fld.fold_stmt(*x))) {
|
|
|
|
Some(s) => new_stmts.push(s),
|
|
|
|
None => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let new_expr = b.expr.map(|x| fld.fold_expr(rename_fld.fold_expr(*x)));
|
|
|
|
Block{
|
|
|
|
view_items: new_view_items,
|
|
|
|
stmts: new_stmts,
|
|
|
|
expr: new_expr,
|
|
|
|
id: fld.new_id(b.id),
|
|
|
|
rules: b.rules,
|
|
|
|
span: b.span,
|
2013-05-17 09:41:04 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-25 11:40:51 -07:00
|
|
|
// rename_fold should never return "None".
|
2013-07-05 13:57:53 -07:00
|
|
|
// (basically, just .get() with a better message...)
|
2013-06-25 11:40:51 -07:00
|
|
|
fn mustbesome<T>(val : Option<T>) -> T {
|
|
|
|
match val {
|
|
|
|
Some(v) => v,
|
|
|
|
None => fail!("rename_fold returned None")
|
|
|
|
}
|
|
|
|
}
|
2013-05-17 09:41:04 -07:00
|
|
|
|
2013-06-25 11:40:51 -07: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",
|
|
|
|
@" block"))
|
|
|
|
}
|
|
|
|
}
|
2013-05-17 09:41:04 -07:00
|
|
|
|
2013-08-31 18:13:04 +02:00
|
|
|
pub fn new_span(cx: @ExtCtxt, sp: Span) -> Span {
|
2012-02-04 18:37:24 -07:00
|
|
|
/* this discards information in the case of macro-defining macros */
|
2013-08-31 18:13:04 +02:00
|
|
|
return Span {lo: sp.lo, hi: sp.hi, expn_info: cx.backtrace()};
|
2012-02-04 18:37:24 -07:00
|
|
|
}
|
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
// FIXME (#2247): this is a moderately bad kludge to inject some macros into
|
2013-07-05 13:57:53 -07:00
|
|
|
// the default compilation environment in that it injects strings, rather than
|
|
|
|
// syntax elements.
|
2011-12-20 13:38:10 -08:00
|
|
|
|
2013-07-16 15:05:50 +10:00
|
|
|
pub fn std_macros() -> @str {
|
2012-08-01 17:30:05 -07:00
|
|
|
return
|
2013-07-17 03:08:08 +10:00
|
|
|
@"mod __std_macros {
|
2013-07-16 15:05:50 +10:00
|
|
|
#[macro_escape];
|
2013-07-17 03:08:08 +10:00
|
|
|
#[doc(hidden)];
|
2013-07-16 15:05:50 +10:00
|
|
|
|
2012-09-07 16:58:27 -07:00
|
|
|
macro_rules! ignore (($($x:tt)*) => (()))
|
2012-11-26 22:34:01 -05:00
|
|
|
|
2013-03-07 18:45:22 -08:00
|
|
|
macro_rules! error (
|
|
|
|
($arg:expr) => (
|
2013-03-08 18:32:03 -08:00
|
|
|
__log(1u32, fmt!( \"%?\", $arg ))
|
2013-03-07 18:45:22 -08:00
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
2013-03-08 18:32:03 -08:00
|
|
|
__log(1u32, fmt!( $($arg),+ ))
|
2013-03-07 18:45:22 -08:00
|
|
|
)
|
|
|
|
)
|
2013-04-23 22:30:58 +02:00
|
|
|
|
2013-03-07 18:45:22 -08:00
|
|
|
macro_rules! warn (
|
|
|
|
($arg:expr) => (
|
2013-03-08 18:32:03 -08:00
|
|
|
__log(2u32, fmt!( \"%?\", $arg ))
|
2013-03-07 18:45:22 -08:00
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
2013-03-08 18:32:03 -08:00
|
|
|
__log(2u32, fmt!( $($arg),+ ))
|
2013-03-07 18:45:22 -08:00
|
|
|
)
|
|
|
|
)
|
2013-04-23 22:30:58 +02:00
|
|
|
|
2013-03-07 18:45:22 -08:00
|
|
|
macro_rules! info (
|
|
|
|
($arg:expr) => (
|
2013-03-08 18:32:03 -08:00
|
|
|
__log(3u32, fmt!( \"%?\", $arg ))
|
2013-03-07 18:45:22 -08:00
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
2013-03-08 18:32:03 -08:00
|
|
|
__log(3u32, fmt!( $($arg),+ ))
|
2013-03-07 18:45:22 -08:00
|
|
|
)
|
|
|
|
)
|
2013-04-23 22:30:58 +02:00
|
|
|
|
2013-08-24 12:46:55 -07:00
|
|
|
macro_rules! debug (
|
2013-03-07 18:45:22 -08:00
|
|
|
($arg:expr) => (
|
2013-08-24 12:46:55 -07:00
|
|
|
if cfg!(debug) { __log(4u32, fmt!( \"%?\", $arg )) }
|
2013-03-07 18:45:22 -08:00
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
2013-08-24 12:46:55 -07:00
|
|
|
if cfg!(debug) { __log(4u32, fmt!( $($arg),+ )) }
|
2013-03-07 18:45:22 -08:00
|
|
|
)
|
|
|
|
)
|
2012-11-27 18:05:20 -08:00
|
|
|
|
2013-08-24 12:46:55 -07:00
|
|
|
macro_rules! error2 (
|
|
|
|
($($arg:tt)*) => ( __log(1u32, format!($($arg)*)))
|
|
|
|
)
|
2013-07-16 15:05:50 +10:00
|
|
|
|
2013-08-24 12:46:55 -07:00
|
|
|
macro_rules! warn2 (
|
|
|
|
($($arg:tt)*) => ( __log(2u32, format!($($arg)*)))
|
|
|
|
)
|
|
|
|
|
|
|
|
macro_rules! info2 (
|
|
|
|
($($arg:tt)*) => ( __log(3u32, format!($($arg)*)))
|
|
|
|
)
|
|
|
|
|
|
|
|
macro_rules! debug2 (
|
|
|
|
($($arg:tt)*) => (
|
|
|
|
if cfg!(debug) { __log(4u32, format!($($arg)*)) }
|
|
|
|
)
|
|
|
|
)
|
2013-07-16 15:05:50 +10:00
|
|
|
|
2013-01-31 18:24:09 -08:00
|
|
|
macro_rules! fail(
|
|
|
|
() => (
|
2013-04-23 22:30:58 +02:00
|
|
|
fail!(\"explicit failure\")
|
|
|
|
);
|
|
|
|
($msg:expr) => (
|
2013-05-20 15:20:16 -07:00
|
|
|
::std::sys::FailWithCause::fail_with($msg, file!(), line!())
|
2013-04-23 22:30:58 +02:00
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
2013-05-20 15:20:16 -07:00
|
|
|
::std::sys::FailWithCause::fail_with(fmt!( $($arg),+ ), file!(), line!())
|
2013-01-31 18:24:09 -08:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2013-08-24 12:46:55 -07:00
|
|
|
macro_rules! fail2(
|
|
|
|
() => (
|
|
|
|
fail!(\"explicit failure\")
|
|
|
|
);
|
|
|
|
($($arg:tt)+) => (
|
|
|
|
::std::sys::FailWithCause::fail_with(format!($($arg)+), file!(), line!())
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2013-03-22 13:11:03 -07:00
|
|
|
macro_rules! assert(
|
|
|
|
($cond:expr) => {
|
|
|
|
if !$cond {
|
2013-05-20 15:20:16 -07:00
|
|
|
::std::sys::FailWithCause::fail_with(
|
2013-07-31 10:15:52 +02:00
|
|
|
\"assertion failed: \" + stringify!($cond), file!(), line!())
|
2013-01-22 16:00:07 -08:00
|
|
|
}
|
2013-03-19 14:05:20 -04:00
|
|
|
};
|
|
|
|
($cond:expr, $msg:expr) => {
|
|
|
|
if !$cond {
|
2013-05-20 15:20:16 -07:00
|
|
|
::std::sys::FailWithCause::fail_with($msg, file!(), line!())
|
2013-04-23 22:30:58 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
($cond:expr, $( $arg:expr ),+) => {
|
|
|
|
if !$cond {
|
2013-05-20 15:20:16 -07:00
|
|
|
::std::sys::FailWithCause::fail_with(fmt!( $($arg),+ ), file!(), line!())
|
2013-03-19 14:05:20 -04:00
|
|
|
}
|
2013-01-22 16:00:07 -08:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2013-03-13 12:10:32 -07:00
|
|
|
macro_rules! assert_eq (
|
2013-04-23 22:30:58 +02: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 13:07:26 -04:00
|
|
|
fail!(\"assertion failed: `(left == right) && (right == \
|
|
|
|
left)` (left: `%?`, right: `%?`)\", given_val, expected_val);
|
2013-04-23 22:30:58 +02:00
|
|
|
}
|
2013-05-06 21:51:48 +10:00
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
macro_rules! assert_approx_eq (
|
|
|
|
($given:expr , $expected:expr) => (
|
|
|
|
{
|
2013-05-20 15:20:16 -07:00
|
|
|
use std::cmp::ApproxEq;
|
2013-05-06 21:51:48 +10: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 15:20:16 -07:00
|
|
|
use std::cmp::ApproxEq;
|
2013-05-06 21:51:48 +10: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 22:30:58 +02:00
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
2013-03-13 12:10:32 -07:00
|
|
|
|
2013-09-05 16:41:27 +10:00
|
|
|
// FIXME(#6266): change the /* to /** when attributes are supported on macros
|
|
|
|
// (Though even then—is it going to work according to the clear intent here?)
|
|
|
|
/*
|
|
|
|
A utility macro for indicating unreachable code. It will fail if
|
|
|
|
executed. This is occasionally useful to put after loops that never
|
|
|
|
terminate normally, but instead directly return from a function.
|
|
|
|
|
|
|
|
# Example
|
|
|
|
|
|
|
|
~~~ {.rust}
|
|
|
|
fn choose_weighted_item(v: &[Item]) -> Item {
|
|
|
|
assert!(!v.is_empty());
|
|
|
|
let mut so_far = 0u;
|
|
|
|
for v.each |item| {
|
|
|
|
so_far += item.weight;
|
|
|
|
if so_far > 100 {
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// The above loop always returns, so we must hint to the
|
|
|
|
// type checker that it isn't possible to get down here
|
|
|
|
unreachable!();
|
|
|
|
}
|
|
|
|
~~~
|
|
|
|
|
|
|
|
*/
|
|
|
|
macro_rules! unreachable (() => (
|
|
|
|
fail!(\"internal error: entered unreachable code\");
|
|
|
|
))
|
|
|
|
|
2012-12-14 11:52:11 -08:00
|
|
|
macro_rules! condition (
|
|
|
|
|
2013-07-31 17:59:59 -04:00
|
|
|
{ pub $c:ident: $input:ty -> $out:ty; } => {
|
2013-05-06 19:05:36 +02:00
|
|
|
|
|
|
|
pub mod $c {
|
2013-09-03 16:11:00 -07:00
|
|
|
#[allow(unused_imports)];
|
2013-07-12 01:38:44 -07:00
|
|
|
#[allow(non_uppercase_statics)];
|
2013-09-03 16:11:00 -07:00
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
2013-07-14 01:43:31 -07:00
|
|
|
static key: ::std::local_data::Key<
|
2013-07-31 17:59:59 -04:00
|
|
|
@::std::condition::Handler<$input, $out>> =
|
2013-07-14 01:43:31 -07:00
|
|
|
&::std::local_data::Key;
|
2013-05-06 19:05:36 +02:00
|
|
|
|
|
|
|
pub static cond :
|
2013-07-31 17:59:59 -04:00
|
|
|
::std::condition::Condition<$input,$out> =
|
2013-05-20 15:20:16 -07:00
|
|
|
::std::condition::Condition {
|
2013-05-06 19:05:36 +02:00
|
|
|
name: stringify!($c),
|
|
|
|
key: key
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-07-31 17:59:59 -04:00
|
|
|
{ $c:ident: $input:ty -> $out:ty; } => {
|
2012-12-14 11:52:11 -08:00
|
|
|
|
2013-09-04 04:39:57 +02:00
|
|
|
mod $c {
|
2013-09-03 16:11:00 -07:00
|
|
|
#[allow(unused_imports)];
|
2013-07-12 01:38:44 -07:00
|
|
|
#[allow(non_uppercase_statics)];
|
2013-09-03 16:11:00 -07:00
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
2013-07-14 01:43:31 -07:00
|
|
|
static key: ::std::local_data::Key<
|
2013-07-31 17:59:59 -04:00
|
|
|
@::std::condition::Handler<$input, $out>> =
|
2013-07-14 01:43:31 -07:00
|
|
|
&::std::local_data::Key;
|
2012-12-14 11:52:11 -08:00
|
|
|
|
2013-03-22 14:00:15 -07:00
|
|
|
pub static cond :
|
2013-07-31 17:59:59 -04:00
|
|
|
::std::condition::Condition<$input,$out> =
|
2013-05-20 15:20:16 -07:00
|
|
|
::std::condition::Condition {
|
2013-02-26 14:34:00 -05:00
|
|
|
name: stringify!($c),
|
|
|
|
key: key
|
|
|
|
};
|
2012-12-14 11:52:11 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2013-05-09 01:38:39 +10: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 15:01:27 +10:00
|
|
|
// (x > mx) { mx }
|
|
|
|
// (x < mn) { mn }
|
2013-05-09 01:38:39 +10:00
|
|
|
// _ { x }
|
|
|
|
// );
|
|
|
|
// ~~~
|
|
|
|
//
|
|
|
|
// The optional default case is denoted by `_`.
|
|
|
|
//
|
|
|
|
macro_rules! cond (
|
2013-05-10 15:01:27 +10:00
|
|
|
( $(($pred:expr) $body:block)+ _ $default:block ) => (
|
2013-05-09 01:38:39 +10:00
|
|
|
$(if $pred $body else)+
|
|
|
|
$default
|
|
|
|
);
|
|
|
|
// for if the default case was ommitted
|
2013-05-10 15:01:27 +10:00
|
|
|
( $(($pred:expr) $body:block)+ ) => (
|
2013-05-09 01:38:39 +10:00
|
|
|
$(if $pred $body)else+
|
|
|
|
);
|
|
|
|
)
|
2013-07-13 16:30:31 +03:00
|
|
|
|
2013-08-23 18:14:11 -07:00
|
|
|
// NOTE(acrichto): start removing this after the next snapshot
|
2013-07-13 14:08:05 -07:00
|
|
|
macro_rules! printf (
|
|
|
|
($arg:expr) => (
|
|
|
|
print(fmt!(\"%?\", $arg))
|
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
|
|
|
print(fmt!($($arg),+))
|
|
|
|
)
|
2013-07-13 16:30:31 +03:00
|
|
|
)
|
|
|
|
|
2013-08-23 18:14:11 -07:00
|
|
|
// NOTE(acrichto): start removing this after the next snapshot
|
2013-07-13 14:08:05 -07:00
|
|
|
macro_rules! printfln (
|
|
|
|
($arg:expr) => (
|
|
|
|
println(fmt!(\"%?\", $arg))
|
|
|
|
);
|
|
|
|
($( $arg:expr ),+) => (
|
|
|
|
println(fmt!($($arg),+))
|
|
|
|
)
|
2013-07-13 16:30:31 +03:00
|
|
|
)
|
2013-08-15 23:16:59 +10:00
|
|
|
|
2013-08-23 18:14:11 -07:00
|
|
|
// FIXME(#6846) once stdio is redesigned, this shouldn't perform an
|
|
|
|
// allocation but should rather delegate to an invocation of
|
|
|
|
// write! instead of format!
|
|
|
|
macro_rules! print (
|
2013-08-24 12:46:55 -07:00
|
|
|
($($arg:tt)+) => ( ::std::io::print(format!($($arg)+)))
|
2013-08-23 18:14:11 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// FIXME(#6846) once stdio is redesigned, this shouldn't perform an
|
|
|
|
// allocation but should rather delegate to an io::Writer
|
|
|
|
macro_rules! println (
|
2013-08-24 12:46:55 -07:00
|
|
|
($($arg:tt)+) => ({ print!($($arg)+); ::std::io::println(\"\"); })
|
2013-08-23 18:14:11 -07:00
|
|
|
)
|
|
|
|
|
2013-08-15 23:16:59 +10:00
|
|
|
// NOTE: use this after a snapshot lands to abstract the details
|
|
|
|
// of the TLS interface.
|
|
|
|
macro_rules! local_data_key (
|
|
|
|
($name:ident: $ty:ty) => (
|
|
|
|
static $name: ::std::local_data::Key<$ty> = &::std::local_data::Key;
|
|
|
|
);
|
|
|
|
(pub $name:ident: $ty:ty) => (
|
|
|
|
pub static $name: ::std::local_data::Key<$ty> = &::std::local_data::Key;
|
|
|
|
)
|
|
|
|
)
|
2013-08-14 21:41:40 -04:00
|
|
|
|
|
|
|
// externfn! declares a wrapper for an external function.
|
|
|
|
// It is intended to be used like:
|
|
|
|
//
|
|
|
|
// externfn!(#[nolink]
|
|
|
|
// #[abi = \"cdecl\"]
|
|
|
|
// fn memcmp(cx: *u8, ct: *u8, n: u32) -> u32)
|
|
|
|
//
|
|
|
|
// Due to limitations in the macro parser, this pattern must be
|
|
|
|
// implemented with 4 distinct patterns (with attrs / without
|
|
|
|
// attrs CROSS with args / without ARGS).
|
|
|
|
//
|
|
|
|
// Also, this macro grammar allows for any number of return types
|
|
|
|
// because I couldn't figure out the syntax to specify at most one.
|
|
|
|
macro_rules! externfn(
|
|
|
|
(fn $name:ident () $(-> $ret_ty:ty),*) => (
|
|
|
|
pub unsafe fn $name() $(-> $ret_ty),* {
|
|
|
|
// Note: to avoid obscure bug in macros, keep these
|
|
|
|
// attributes *internal* to the fn
|
|
|
|
#[fixed_stack_segment];
|
|
|
|
#[inline(never)];
|
|
|
|
#[allow(missing_doc)];
|
|
|
|
|
|
|
|
return $name();
|
|
|
|
|
|
|
|
extern {
|
|
|
|
fn $name() $(-> $ret_ty),*;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
(fn $name:ident ($($arg_name:ident : $arg_ty:ty),*) $(-> $ret_ty:ty),*) => (
|
|
|
|
pub unsafe fn $name($($arg_name : $arg_ty),*) $(-> $ret_ty),* {
|
|
|
|
// Note: to avoid obscure bug in macros, keep these
|
|
|
|
// attributes *internal* to the fn
|
|
|
|
#[fixed_stack_segment];
|
|
|
|
#[inline(never)];
|
|
|
|
#[allow(missing_doc)];
|
|
|
|
|
|
|
|
return $name($($arg_name),*);
|
|
|
|
|
|
|
|
extern {
|
|
|
|
fn $name($($arg_name : $arg_ty),*) $(-> $ret_ty),*;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
($($attrs:attr)* fn $name:ident () $(-> $ret_ty:ty),*) => (
|
|
|
|
pub unsafe fn $name() $(-> $ret_ty),* {
|
|
|
|
// Note: to avoid obscure bug in macros, keep these
|
|
|
|
// attributes *internal* to the fn
|
|
|
|
#[fixed_stack_segment];
|
|
|
|
#[inline(never)];
|
|
|
|
#[allow(missing_doc)];
|
|
|
|
|
|
|
|
return $name();
|
|
|
|
|
|
|
|
$($attrs)*
|
|
|
|
extern {
|
|
|
|
fn $name() $(-> $ret_ty),*;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
($($attrs:attr)* fn $name:ident ($($arg_name:ident : $arg_ty:ty),*) $(-> $ret_ty:ty),*) => (
|
|
|
|
pub unsafe fn $name($($arg_name : $arg_ty),*) $(-> $ret_ty),* {
|
|
|
|
// Note: to avoid obscure bug in macros, keep these
|
|
|
|
// attributes *internal* to the fn
|
|
|
|
#[fixed_stack_segment];
|
|
|
|
#[inline(never)];
|
|
|
|
#[allow(missing_doc)];
|
|
|
|
|
|
|
|
return $name($($arg_name),*);
|
|
|
|
|
|
|
|
$($attrs)*
|
|
|
|
extern {
|
|
|
|
fn $name($($arg_name : $arg_ty),*) $(-> $ret_ty),*;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2011-12-20 13:38:10 -08:00
|
|
|
}";
|
|
|
|
}
|
|
|
|
|
2013-07-16 15:05:50 +10:00
|
|
|
// add a bunch of macros as though they were placed at the head of the
|
|
|
|
// program (ick). This should run before cfg stripping.
|
|
|
|
pub fn inject_std_macros(parse_sess: @mut parse::ParseSess,
|
2013-07-19 07:38:55 +02:00
|
|
|
cfg: ast::CrateConfig, c: &Crate) -> @Crate {
|
2013-07-16 15:05:50 +10:00
|
|
|
let sm = match parse_item_from_source_str(@"<std-macros>",
|
|
|
|
std_macros(),
|
2013-07-10 14:43:25 -07:00
|
|
|
cfg.clone(),
|
2013-07-16 15:05:50 +10:00
|
|
|
~[],
|
|
|
|
parse_sess) {
|
|
|
|
Some(item) => item,
|
|
|
|
None => fail!("expected core macros to parse correctly")
|
|
|
|
};
|
|
|
|
|
|
|
|
let injecter = @AstFoldFns {
|
|
|
|
fold_mod: |modd, _| {
|
|
|
|
// just inject the std macros at the start of the first
|
|
|
|
// module in the crate (i.e the crate file itself.)
|
|
|
|
let items = vec::append(~[sm], modd.items);
|
|
|
|
ast::_mod {
|
|
|
|
items: items,
|
|
|
|
// FIXME #2543: Bad copy.
|
2013-07-10 14:43:25 -07:00
|
|
|
.. (*modd).clone()
|
2013-07-16 15:05:50 +10:00
|
|
|
}
|
|
|
|
},
|
|
|
|
.. *default_ast_fold()
|
|
|
|
};
|
|
|
|
@make_fold(injecter).fold_crate(c)
|
|
|
|
}
|
|
|
|
|
2013-02-21 00:16:31 -08:00
|
|
|
pub fn expand_crate(parse_sess: @mut parse::ParseSess,
|
2013-07-19 07:38:55 +02:00
|
|
|
cfg: ast::CrateConfig, c: &Crate) -> @Crate {
|
2013-02-26 10:15:29 -08: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 14:19:39 +02:00
|
|
|
let afp = default_ast_fold();
|
2013-07-02 12:47:32 -07:00
|
|
|
let cx = ExtCtxt::new(parse_sess, cfg.clone());
|
2013-01-08 14:00:45 -08:00
|
|
|
let f_pre = @AstFoldFns {
|
2013-02-26 10:15:29 -08: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),
|
2013-07-16 20:08:35 +02:00
|
|
|
fold_block: |blk,recur|
|
|
|
|
expand_block(extsbox, cx, blk, recur, afp.fold_block),
|
2013-01-08 14:00:45 -08:00
|
|
|
new_span: |a| new_span(cx, a),
|
|
|
|
.. *afp};
|
2011-07-27 14:19:39 +02:00
|
|
|
let f = make_fold(f_pre);
|
2011-12-20 13:38:10 -08:00
|
|
|
|
2013-07-29 01:12:41 -07:00
|
|
|
let ret = @f.fold_crate(c);
|
|
|
|
parse_sess.span_diagnostic.handler().abort_if_errors();
|
|
|
|
return ret;
|
2011-07-06 15:22:23 -07:00
|
|
|
}
|
2013-02-26 10:15:29 -08:00
|
|
|
|
2013-07-13 10:18:37 -07:00
|
|
|
// HYGIENIC CONTEXT EXTENSION:
|
|
|
|
// all of these functions are for walking over
|
|
|
|
// ASTs and making some change to the context of every
|
|
|
|
// element that has one. a CtxtFn is a trait-ified
|
|
|
|
// version of a closure in (SyntaxContext -> SyntaxContext).
|
|
|
|
// the ones defined here include:
|
|
|
|
// Renamer - add a rename to a context
|
|
|
|
// MultiRenamer - add a set of renames to a context
|
|
|
|
// Marker - add a mark to a context
|
|
|
|
// Repainter - replace a context (maybe Replacer would be a better name?)
|
|
|
|
|
2013-07-09 15:56:21 -07:00
|
|
|
// a function in SyntaxContext -> SyntaxContext
|
|
|
|
pub trait CtxtFn{
|
|
|
|
fn f(&self, ast::SyntaxContext) -> ast::SyntaxContext;
|
2013-04-03 10:28:14 -07:00
|
|
|
}
|
2013-05-16 17:42:08 -07:00
|
|
|
|
2013-07-08 15:55:14 -07:00
|
|
|
// a renamer adds a rename to the syntax context
|
2013-07-09 15:56:21 -07:00
|
|
|
pub struct Renamer {
|
|
|
|
from : ast::Ident,
|
|
|
|
to : ast::Name
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CtxtFn for Renamer {
|
|
|
|
fn f(&self, ctxt : ast::SyntaxContext) -> ast::SyntaxContext {
|
|
|
|
new_rename(self.from,self.to,ctxt)
|
2013-05-16 17:42:08 -07:00
|
|
|
}
|
2013-04-03 10:28:14 -07:00
|
|
|
}
|
|
|
|
|
2013-07-08 15:55:14 -07:00
|
|
|
// a renamer that performs a whole bunch of renames
|
|
|
|
pub struct MultiRenamer {
|
|
|
|
renames : @mut ~[(ast::Ident,ast::Name)]
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CtxtFn for MultiRenamer {
|
|
|
|
fn f(&self, starting_ctxt : ast::SyntaxContext) -> ast::SyntaxContext {
|
|
|
|
// the individual elements are memoized... it would
|
|
|
|
// also be possible to memoize on the whole list at once.
|
|
|
|
self.renames.iter().fold(starting_ctxt,|ctxt,&(from,to)| {
|
|
|
|
new_rename(from,to,ctxt)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// a marker adds the given mark to the syntax context
|
2013-07-09 15:56:21 -07:00
|
|
|
pub struct Marker { mark : Mrk }
|
|
|
|
|
|
|
|
impl CtxtFn for Marker {
|
|
|
|
fn f(&self, ctxt : ast::SyntaxContext) -> ast::SyntaxContext {
|
|
|
|
new_mark(self.mark,ctxt)
|
2013-05-16 17:42:08 -07:00
|
|
|
}
|
2013-04-03 10:28:14 -07:00
|
|
|
}
|
2013-05-16 17:42:08 -07:00
|
|
|
|
2013-07-08 15:55:14 -07:00
|
|
|
// a repainter just replaces the given context with the one it's closed over
|
|
|
|
pub struct Repainter { ctxt : SyntaxContext }
|
|
|
|
|
|
|
|
impl CtxtFn for Repainter {
|
2013-07-11 23:07:34 -07:00
|
|
|
fn f(&self, _ctxt : ast::SyntaxContext) -> ast::SyntaxContext {
|
2013-07-08 15:55:14 -07:00
|
|
|
self.ctxt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-09 15:56:21 -07:00
|
|
|
// given a function from ctxts to ctxts, produce
|
|
|
|
// an ast_fold that applies that function to all ctxts:
|
|
|
|
pub fn fun_to_ctxt_folder<T : 'static + CtxtFn>(cf: @T) -> @AstFoldFns {
|
|
|
|
let afp = default_ast_fold();
|
|
|
|
let fi : @fn(ast::Ident, @ast_fold) -> ast::Ident =
|
|
|
|
|ast::Ident{name, ctxt}, _| {
|
|
|
|
ast::Ident{name:name,ctxt:cf.f(ctxt)}
|
|
|
|
};
|
2013-07-08 15:55:14 -07:00
|
|
|
let fm : @fn(&ast::mac_, Span, @ast_fold) -> (ast::mac_,Span) =
|
2013-07-08 10:37:07 -07:00
|
|
|
|m, sp, fld| {
|
|
|
|
match *m {
|
|
|
|
mac_invoc_tt(ref path, ref tts, ctxt) =>
|
|
|
|
(mac_invoc_tt(fld.fold_path(path),
|
|
|
|
fold_tts(*tts,fld),
|
|
|
|
cf.f(ctxt)),
|
|
|
|
sp)
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2013-07-09 15:56:21 -07:00
|
|
|
@AstFoldFns{
|
|
|
|
fold_ident : fi,
|
2013-07-08 10:37:07 -07:00
|
|
|
fold_mac : fm,
|
2013-07-09 15:56:21 -07:00
|
|
|
.. *afp
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-08 15:55:14 -07:00
|
|
|
|
|
|
|
|
|
|
|
// given a mutable list of renames, return a tree-folder that applies those
|
|
|
|
// renames.
|
|
|
|
// FIXME #4536: currently pub to allow testing
|
|
|
|
pub fn renames_to_fold(renames : @mut ~[(ast::Ident,ast::Name)]) -> @AstFoldFns {
|
|
|
|
fun_to_ctxt_folder(@MultiRenamer{renames : renames})
|
|
|
|
}
|
|
|
|
|
2013-07-09 15:56:21 -07:00
|
|
|
// just a convenience:
|
2013-07-14 15:25:04 -04:00
|
|
|
pub fn new_mark_folder(m : Mrk) -> @AstFoldFns {
|
|
|
|
fun_to_ctxt_folder(@Marker{mark:m})
|
|
|
|
}
|
|
|
|
|
2013-07-09 15:56:21 -07:00
|
|
|
pub fn new_rename_folder(from : ast::Ident, to : ast::Name) -> @AstFoldFns {
|
|
|
|
fun_to_ctxt_folder(@Renamer{from:from,to:to})
|
|
|
|
}
|
|
|
|
|
2013-06-29 05:59:08 -07:00
|
|
|
// apply a given mark to the given token trees. Used prior to expansion of a macro.
|
|
|
|
fn mark_tts(tts : &[token_tree], m : Mrk) -> ~[token_tree] {
|
2013-07-09 15:56:21 -07:00
|
|
|
fold_tts(tts,new_mark_folder(m) as @ast_fold)
|
2013-06-29 05:59:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// apply a given mark to the given expr. Used following the expansion of a macro.
|
|
|
|
fn mark_expr(expr : @ast::Expr, m : Mrk) -> @ast::Expr {
|
2013-07-09 15:56:21 -07:00
|
|
|
new_mark_folder(m).fold_expr(expr)
|
2013-06-29 05:59:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// apply a given mark to the given stmt. Used following the expansion of a macro.
|
|
|
|
fn mark_stmt(expr : &ast::Stmt, m : Mrk) -> @ast::Stmt {
|
2013-07-09 15:56:21 -07:00
|
|
|
new_mark_folder(m).fold_stmt(expr).unwrap()
|
2013-06-29 05:59:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// apply a given mark to the given item. Used following the expansion of a macro.
|
|
|
|
fn mark_item(expr : @ast::item, m : Mrk) -> Option<@ast::item> {
|
2013-07-09 15:56:21 -07:00
|
|
|
new_mark_folder(m).fold_item(expr)
|
2013-06-29 05:59:08 -07:00
|
|
|
}
|
|
|
|
|
2013-07-08 15:55:14 -07:00
|
|
|
// replace all contexts in a given expr with the given mark. Used
|
|
|
|
// for capturing macros
|
|
|
|
pub fn replace_ctxts(expr : @ast::Expr, ctxt : SyntaxContext) -> @ast::Expr {
|
|
|
|
fun_to_ctxt_folder(@Repainter{ctxt:ctxt}).fold_expr(expr)
|
|
|
|
}
|
|
|
|
|
2013-07-14 15:25:04 -04:00
|
|
|
// take the mark from the given ctxt (that has a mark at the outside),
|
|
|
|
// and apply it to everything in the token trees, thereby cancelling
|
|
|
|
// that mark.
|
|
|
|
pub fn mtwt_cancel_outer_mark(tts: &[ast::token_tree], ctxt: ast::SyntaxContext)
|
|
|
|
-> ~[ast::token_tree] {
|
|
|
|
let outer_mark = mtwt_outer_mark(ctxt);
|
|
|
|
mark_tts(tts,outer_mark)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::*;
|
2013-02-25 14:11:21 -05:00
|
|
|
use ast;
|
2013-09-02 03:45:37 +02:00
|
|
|
use ast::{Attribute_, AttrOuter, MetaWord, EMPTY_CTXT};
|
2013-07-12 18:35:47 -07:00
|
|
|
use ast_util::{get_sctable, mtwt_marksof, mtwt_resolve, new_rename};
|
2013-09-05 09:29:31 -07:00
|
|
|
use ast_util;
|
2013-02-25 14:11:21 -05:00
|
|
|
use codemap;
|
2013-08-31 18:13:04 +02:00
|
|
|
use codemap::Spanned;
|
2013-07-14 15:25:04 -04:00
|
|
|
use fold;
|
2013-02-25 14:11:21 -05:00
|
|
|
use parse;
|
2013-07-14 15:25:04 -04:00
|
|
|
use parse::token::{fresh_mark, gensym, intern, get_ident_interner, ident_to_str};
|
|
|
|
use parse::token;
|
2013-05-21 16:57:21 -07:00
|
|
|
use print::pprust;
|
2013-06-25 11:40:51 -07:00
|
|
|
use std;
|
2013-09-05 09:29:31 -07:00
|
|
|
use util::parser_testing::{string_to_crate, string_to_crate_and_sess};
|
2013-07-14 15:25:04 -04:00
|
|
|
use util::parser_testing::{string_to_pat, string_to_tts, strs_to_idents};
|
2013-06-29 05:59:08 -07:00
|
|
|
use visit;
|
2013-02-26 10:15:29 -08:00
|
|
|
|
|
|
|
// make sure that fail! is present
|
|
|
|
#[test] fn fail_exists_test () {
|
2013-06-13 03:02:55 +10:00
|
|
|
let src = @"fn main() { fail!(\"something appropriately gloomy\");}";
|
2013-02-26 10:15:29 -08:00
|
|
|
let sess = parse::new_parse_sess(None);
|
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2013-06-13 03:02:55 +10:00
|
|
|
@"<test>",
|
|
|
|
src,
|
2013-05-12 16:50:57 -04:00
|
|
|
~[],sess);
|
2013-07-16 15:05:50 +10:00
|
|
|
let crate_ast = inject_std_macros(sess, ~[], crate_ast);
|
|
|
|
// don't bother with striping, doesn't affect fail!.
|
2013-05-12 16:50:57 -04:00
|
|
|
expand_crate(sess,~[],crate_ast);
|
2013-02-26 10:15:29 -08: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-13 03:02:55 +10:00
|
|
|
let src = @"fn bogus() {macro_rules! z (() => (3+4))}\
|
2013-02-26 10:15:29 -08:00
|
|
|
fn inty() -> int { z!() }";
|
|
|
|
let sess = parse::new_parse_sess(None);
|
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2013-06-13 03:02:55 +10:00
|
|
|
@"<test>",
|
|
|
|
src,
|
2013-05-12 16:50:57 -04:00
|
|
|
~[],sess);
|
2013-02-26 10:15:29 -08:00
|
|
|
// should fail:
|
2013-05-12 16:50:57 -04:00
|
|
|
expand_crate(sess,~[],crate_ast);
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// make sure that macros can leave scope for modules
|
|
|
|
#[should_fail]
|
|
|
|
#[test] fn macros_cant_escape_mods_test () {
|
2013-06-13 03:02:55 +10:00
|
|
|
let src = @"mod foo {macro_rules! z (() => (3+4))}\
|
2013-02-26 10:15:29 -08:00
|
|
|
fn inty() -> int { z!() }";
|
|
|
|
let sess = parse::new_parse_sess(None);
|
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2013-06-13 03:02:55 +10:00
|
|
|
@"<test>",
|
|
|
|
src,
|
2013-05-12 16:50:57 -04:00
|
|
|
~[],sess);
|
2013-02-26 10:15:29 -08:00
|
|
|
// should fail:
|
2013-05-12 16:50:57 -04:00
|
|
|
expand_crate(sess,~[],crate_ast);
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// macro_escape modules shouldn't cause macros to leave scope
|
|
|
|
#[test] fn macros_can_escape_flattened_mods_test () {
|
2013-06-13 03:02:55 +10:00
|
|
|
let src = @"#[macro_escape] mod foo {macro_rules! z (() => (3+4))}\
|
2013-02-26 10:15:29 -08:00
|
|
|
fn inty() -> int { z!() }";
|
|
|
|
let sess = parse::new_parse_sess(None);
|
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2013-06-13 03:02:55 +10:00
|
|
|
@"<test>",
|
|
|
|
src,
|
2013-05-12 16:50:57 -04:00
|
|
|
~[], sess);
|
2013-02-26 10:15:29 -08:00
|
|
|
// should fail:
|
2013-05-12 16:50:57 -04:00
|
|
|
expand_crate(sess,~[],crate_ast);
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
2013-07-16 15:05:50 +10:00
|
|
|
#[test] fn std_macros_must_parse () {
|
|
|
|
let src = super::std_macros();
|
2013-02-26 10:15:29 -08:00
|
|
|
let sess = parse::new_parse_sess(None);
|
|
|
|
let cfg = ~[];
|
|
|
|
let item_ast = parse::parse_item_from_source_str(
|
2013-06-13 03:02:55 +10:00
|
|
|
@"<test>",
|
|
|
|
src,
|
2013-07-16 15:05:50 +10:00
|
|
|
cfg,~[],sess);
|
2013-02-26 10:15:29 -08:00
|
|
|
match item_ast {
|
|
|
|
Some(_) => (), // success
|
2013-05-06 00:18:51 +02:00
|
|
|
None => fail!("expected this to parse")
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn test_contains_flatten (){
|
2013-06-13 03:02:55 +10:00
|
|
|
let attr1 = make_dummy_attr (@"foo");
|
|
|
|
let attr2 = make_dummy_attr (@"bar");
|
|
|
|
let escape_attr = make_dummy_attr (@"macro_escape");
|
2013-02-26 10:15:29 -08:00
|
|
|
let attrs1 = ~[attr1, escape_attr, attr2];
|
2013-03-13 15:30:37 -07:00
|
|
|
assert_eq!(contains_macro_escape (attrs1),true);
|
2013-02-26 10:15:29 -08:00
|
|
|
let attrs2 = ~[attr1,attr2];
|
2013-03-13 15:30:37 -07:00
|
|
|
assert_eq!(contains_macro_escape (attrs2),false);
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
2013-07-19 21:51:37 +10:00
|
|
|
// make a MetaWord outer attribute with the given name
|
|
|
|
fn make_dummy_attr(s: @str) -> ast::Attribute {
|
2013-08-31 18:13:04 +02:00
|
|
|
Spanned {
|
2013-02-28 07:25:31 -08:00
|
|
|
span:codemap::dummy_sp(),
|
2013-07-19 21:51:37 +10:00
|
|
|
node: Attribute_ {
|
|
|
|
style: AttrOuter,
|
2013-08-31 18:13:04 +02:00
|
|
|
value: @Spanned {
|
2013-07-19 21:51:37 +10:00
|
|
|
node: MetaWord(s),
|
2013-02-28 07:25:31 -08:00
|
|
|
span: codemap::dummy_sp(),
|
|
|
|
},
|
|
|
|
is_sugared_doc: false,
|
|
|
|
}
|
|
|
|
}
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
2013-07-14 15:25:04 -04:00
|
|
|
#[test] fn cancel_outer_mark_test(){
|
|
|
|
let invalid_name = token::special_idents::invalid.name;
|
|
|
|
let ident_str = @"x";
|
|
|
|
let tts = string_to_tts(ident_str);
|
|
|
|
let fm = fresh_mark();
|
|
|
|
let marked_once = fold::fold_tts(tts,new_mark_folder(fm) as @fold::ast_fold);
|
|
|
|
assert_eq!(marked_once.len(),1);
|
|
|
|
let marked_once_ctxt =
|
|
|
|
match marked_once[0] {
|
|
|
|
ast::tt_tok(_,token::IDENT(id,_)) => id.ctxt,
|
|
|
|
_ => fail!(fmt!("unexpected shape for marked tts: %?",marked_once[0]))
|
|
|
|
};
|
|
|
|
assert_eq!(mtwt_marksof(marked_once_ctxt,invalid_name),~[fm]);
|
|
|
|
let remarked = mtwt_cancel_outer_mark(marked_once,marked_once_ctxt);
|
|
|
|
assert_eq!(remarked.len(),1);
|
|
|
|
match remarked[0] {
|
|
|
|
ast::tt_tok(_,token::IDENT(id,_)) =>
|
|
|
|
assert_eq!(mtwt_marksof(id.ctxt,invalid_name),~[]),
|
|
|
|
_ => fail!(fmt!("unexpected shape for marked tts: %?",remarked[0]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-16 17:42:08 -07:00
|
|
|
#[test]
|
|
|
|
fn renaming () {
|
2013-07-09 15:56:21 -07:00
|
|
|
let item_ast = string_to_crate(@"fn f() -> int { a }");
|
2013-05-21 16:57:21 -07:00
|
|
|
let a_name = intern("a");
|
2013-06-25 11:40:51 -07:00
|
|
|
let a2_name = gensym("a2");
|
2013-07-09 15:56:21 -07:00
|
|
|
let renamer = new_rename_folder(ast::Ident{name:a_name,ctxt:EMPTY_CTXT},
|
2013-05-21 16:57:21 -07:00
|
|
|
a2_name);
|
2013-07-09 15:56:21 -07:00
|
|
|
let renamed_ast = renamer.fold_crate(item_ast);
|
|
|
|
let varrefs = @mut ~[];
|
|
|
|
visit::walk_crate(&mut new_path_finder(varrefs), &renamed_ast, ());
|
|
|
|
match varrefs {
|
|
|
|
@[Path{segments:[ref seg],_}] => assert_eq!(mtwt_resolve(seg.identifier),a2_name),
|
|
|
|
_ => assert_eq!(0,1)
|
|
|
|
}
|
2013-05-21 16:57:21 -07:00
|
|
|
|
2013-06-25 11:40:51 -07:00
|
|
|
// try a double-rename, with pending_renames.
|
|
|
|
let a3_name = gensym("a3");
|
2013-07-05 13:57:53 -07:00
|
|
|
// a context that renames from ("a",empty) to "a2" :
|
2013-06-25 11:40:51 -07:00
|
|
|
let ctxt2 = new_rename(ast::Ident::new(a_name),a2_name,EMPTY_CTXT);
|
|
|
|
let pending_renames = @mut ~[(ast::Ident::new(a_name),a2_name),
|
|
|
|
(ast::Ident{name:a_name,ctxt:ctxt2},a3_name)];
|
2013-07-09 15:56:21 -07:00
|
|
|
let double_renamed = renames_to_fold(pending_renames).fold_crate(item_ast);
|
|
|
|
let varrefs = @mut ~[];
|
|
|
|
visit::walk_crate(&mut new_path_finder(varrefs), &double_renamed, ());
|
|
|
|
match varrefs {
|
2013-07-05 13:57:53 -07:00
|
|
|
@[Path{segments:[ref seg],_}] => assert_eq!(mtwt_resolve(seg.identifier),a3_name),
|
2013-07-09 15:56:21 -07:00
|
|
|
_ => assert_eq!(0,1)
|
|
|
|
}
|
2013-06-25 11:40:51 -07:00
|
|
|
}
|
2013-05-21 16:57:21 -07:00
|
|
|
|
2013-07-08 15:55:14 -07:00
|
|
|
fn fake_print_crate(crate: @ast::Crate) {
|
|
|
|
let s = pprust::rust_printer(std::io::stderr(),get_ident_interner());
|
|
|
|
pprust::print_crate_(s, crate);
|
2013-05-16 17:42:08 -07:00
|
|
|
}
|
|
|
|
|
2013-07-09 16:00:41 -07:00
|
|
|
fn expand_crate_str(crate_str: @str) -> @ast::Crate {
|
|
|
|
let (crate_ast,ps) = string_to_crate_and_sess(crate_str);
|
2013-06-25 11:40:51 -07:00
|
|
|
// the cfg argument actually does matter, here...
|
2013-07-09 16:00:41 -07:00
|
|
|
expand_crate(ps,~[],crate_ast)
|
|
|
|
}
|
|
|
|
|
|
|
|
//fn expand_and_resolve(crate_str: @str) -> ast::crate {
|
|
|
|
//let expanded_ast = expand_crate_str(crate_str);
|
2013-06-25 11:40:51 -07:00
|
|
|
// std::io::println(fmt!("expanded: %?\n",expanded_ast));
|
2013-06-07 12:28:03 -07:00
|
|
|
//mtwt_resolve_crate(expanded_ast)
|
|
|
|
//}
|
|
|
|
//fn expand_and_resolve_and_pretty_print (crate_str : @str) -> ~str {
|
|
|
|
//let resolved_ast = expand_and_resolve(crate_str);
|
2013-06-06 18:09:31 -07:00
|
|
|
//pprust::to_str(&resolved_ast,fake_print_crate,get_ident_interner())
|
|
|
|
//}
|
2013-06-25 11:40:51 -07:00
|
|
|
|
2013-07-09 15:10:16 -07:00
|
|
|
#[test] fn macro_tokens_should_match(){
|
|
|
|
expand_crate_str(@"macro_rules! m((a)=>(13)) fn main(){m!(a);}");
|
|
|
|
}
|
|
|
|
|
2013-06-29 05:59:08 -07:00
|
|
|
// renaming tests expand a crate and then check that the bindings match
|
|
|
|
// the right varrefs. The specification of the test case includes the
|
|
|
|
// text of the crate, and also an array of arrays. Each element in the
|
|
|
|
// outer array corresponds to a binding in the traversal of the AST
|
|
|
|
// induced by visit. Each of these arrays contains a list of indexes,
|
|
|
|
// interpreted as the varrefs in the varref traversal that this binding
|
|
|
|
// should match. So, for instance, in a program with two bindings and
|
|
|
|
// three varrefs, the array ~[~[1,2],~[0]] would indicate that the first
|
|
|
|
// binding should match the second two varrefs, and the second binding
|
|
|
|
// should match the first varref.
|
|
|
|
//
|
|
|
|
// The comparisons are done post-mtwt-resolve, so we're comparing renamed
|
|
|
|
// names; differences in marks don't matter any more.
|
2013-07-12 18:35:47 -07:00
|
|
|
//
|
|
|
|
// oog... I also want tests that check "binding-identifier-=?". That is,
|
|
|
|
// not just "do these have the same name", but "do they have the same
|
|
|
|
// name *and* the same marks"? Understanding this is really pretty painful.
|
|
|
|
// in principle, you might want to control this boolean on a per-varref basis,
|
|
|
|
// but that would make things even harder to understand, and might not be
|
|
|
|
// necessary for thorough testing.
|
|
|
|
type renaming_test = (&'static str, ~[~[uint]], bool);
|
2013-06-29 05:59:08 -07:00
|
|
|
|
2013-06-25 11:40:51 -07:00
|
|
|
#[test]
|
|
|
|
fn automatic_renaming () {
|
2013-06-29 05:59:08 -07:00
|
|
|
let tests : ~[renaming_test] =
|
2013-06-06 11:21:02 -07:00
|
|
|
~[// b & c should get new names throughout, in the expr too:
|
2013-06-29 05:59:08 -07:00
|
|
|
("fn a() -> int { let b = 13; let c = b; b+c }",
|
2013-07-12 18:35:47 -07:00
|
|
|
~[~[0,1],~[2]], false),
|
2013-06-07 15:01:28 -07:00
|
|
|
// both x's should be renamed (how is this causing a bug?)
|
2013-06-29 05:59:08 -07:00
|
|
|
("fn main () {let x : int = 13;x;}",
|
2013-07-12 18:35:47 -07:00
|
|
|
~[~[0]], false),
|
2013-06-29 05:59:08 -07:00
|
|
|
// the use of b after the + should be renamed, the other one not:
|
|
|
|
("macro_rules! f (($x:ident) => (b + $x)) fn a() -> int { let b = 13; f!(b)}",
|
2013-07-12 18:35:47 -07:00
|
|
|
~[~[1]], false),
|
2013-06-06 11:21:02 -07:00
|
|
|
// the b before the plus should not be renamed (requires marks)
|
2013-06-29 05:59:08 -07:00
|
|
|
("macro_rules! f (($x:ident) => ({let b=9; ($x + b)})) fn a() -> int { f!(b)}",
|
2013-07-12 18:35:47 -07:00
|
|
|
~[~[1]], false),
|
2013-06-29 05:59:08 -07:00
|
|
|
// the marks going in and out of letty should cancel, allowing that $x to
|
|
|
|
// capture the one following the semicolon.
|
|
|
|
// this was an awesome test case, and caught a *lot* of bugs.
|
|
|
|
("macro_rules! letty(($x:ident) => (let $x = 15;))
|
|
|
|
macro_rules! user(($x:ident) => ({letty!($x); $x}))
|
|
|
|
fn main() -> int {user!(z)}",
|
2013-07-12 18:35:47 -07:00
|
|
|
~[~[0]], false),
|
2013-09-05 09:29:31 -07:00
|
|
|
// FIXME #8062: this test exposes a *potential* bug; our system does
|
|
|
|
// not behave exactly like MTWT, but I haven't thought of a way that
|
|
|
|
// this could cause a bug in Rust, yet.
|
|
|
|
// ("fn main() {let hrcoo = 19; macro_rules! getx(()=>(hrcoo)); getx!();}",
|
|
|
|
// ~[~[0]], true)
|
2013-06-06 18:09:31 -07:00
|
|
|
// FIXME #6994: the next string exposes the bug referred to in issue 6994, so I'm
|
|
|
|
// commenting it out.
|
2013-07-11 22:58:14 -07:00
|
|
|
// the z flows into and out of two macros (g & f) along one path, and one
|
|
|
|
// (just g) along the other, so the result of the whole thing should
|
|
|
|
// be "let z_123 = 3; z_123"
|
|
|
|
//"macro_rules! g (($x:ident) =>
|
|
|
|
// ({macro_rules! f(($y:ident)=>({let $y=3;$x}));f!($x)}))
|
2013-06-06 18:09:31 -07:00
|
|
|
// fn a(){g!(z)}"
|
2013-07-11 22:58:14 -07:00
|
|
|
// create a really evil test case where a $x appears inside a binding of $x
|
|
|
|
// but *shouldnt* bind because it was inserted by a different macro....
|
2013-06-25 11:43:52 -07:00
|
|
|
];
|
2013-09-05 13:28:57 -07:00
|
|
|
for (idx,s) in tests.iter().enumerate() {
|
|
|
|
run_renaming_test(s,idx);
|
2013-06-29 05:59:08 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-12 18:35:47 -07:00
|
|
|
// run one of the renaming tests
|
2013-09-05 13:28:57 -07:00
|
|
|
fn run_renaming_test(t : &renaming_test, test_idx: uint) {
|
2013-09-05 09:29:31 -07:00
|
|
|
let invalid_name = token::special_idents::invalid.name;
|
2013-07-12 18:35:47 -07:00
|
|
|
let (teststr, bound_connections, bound_ident_check) = match *t {
|
|
|
|
(ref str,ref conns, bic) => (str.to_managed(), conns.clone(), bic)
|
2013-06-29 05:59:08 -07:00
|
|
|
};
|
|
|
|
let cr = expand_crate_str(teststr.to_managed());
|
|
|
|
// find the bindings:
|
|
|
|
let bindings = @mut ~[];
|
|
|
|
visit::walk_crate(&mut new_name_finder(bindings),cr,());
|
|
|
|
// find the varrefs:
|
|
|
|
let varrefs = @mut ~[];
|
|
|
|
visit::walk_crate(&mut new_path_finder(varrefs),cr,());
|
|
|
|
// must be one check clause for each binding:
|
|
|
|
assert_eq!(bindings.len(),bound_connections.len());
|
|
|
|
for (binding_idx,shouldmatch) in bound_connections.iter().enumerate() {
|
|
|
|
let binding_name = mtwt_resolve(bindings[binding_idx]);
|
2013-09-05 09:29:31 -07:00
|
|
|
let binding_marks = mtwt_marksof(bindings[binding_idx].ctxt,invalid_name);
|
2013-06-29 05:59:08 -07:00
|
|
|
// shouldmatch can't name varrefs that don't exist:
|
|
|
|
assert!((shouldmatch.len() == 0) ||
|
|
|
|
(varrefs.len() > *shouldmatch.iter().max().unwrap()));
|
|
|
|
for (idx,varref) in varrefs.iter().enumerate() {
|
|
|
|
if shouldmatch.contains(&idx) {
|
|
|
|
// it should be a path of length 1, and it should
|
2013-07-12 18:35:47 -07:00
|
|
|
// be free-identifier=? or bound-identifier=? to the given binding
|
2013-06-29 05:59:08 -07:00
|
|
|
assert_eq!(varref.segments.len(),1);
|
|
|
|
let varref_name = mtwt_resolve(varref.segments[0].identifier);
|
2013-07-12 18:35:47 -07:00
|
|
|
let varref_marks = mtwt_marksof(varref.segments[0].identifier.ctxt,
|
2013-09-05 09:29:31 -07:00
|
|
|
invalid_name);
|
2013-06-29 05:59:08 -07:00
|
|
|
if (!(varref_name==binding_name)){
|
|
|
|
std::io::println("uh oh, should match but doesn't:");
|
|
|
|
std::io::println(fmt!("varref: %?",varref));
|
|
|
|
std::io::println(fmt!("binding: %?", bindings[binding_idx]));
|
2013-09-05 09:29:31 -07:00
|
|
|
ast_util::display_sctable(get_sctable());
|
2013-06-29 05:59:08 -07:00
|
|
|
}
|
|
|
|
assert_eq!(varref_name,binding_name);
|
2013-07-12 18:35:47 -07:00
|
|
|
if (bound_ident_check) {
|
2013-09-05 09:29:31 -07:00
|
|
|
// we're checking bound-identifier=?, and the marks
|
|
|
|
// should be the same, too:
|
2013-07-12 18:35:47 -07:00
|
|
|
assert_eq!(varref_marks,binding_marks.clone());
|
|
|
|
}
|
2013-06-29 05:59:08 -07:00
|
|
|
} else {
|
|
|
|
let fail = (varref.segments.len() == 1)
|
|
|
|
&& (mtwt_resolve(varref.segments[0].identifier) == binding_name);
|
|
|
|
// temp debugging:
|
|
|
|
if (fail) {
|
2013-09-05 13:28:57 -07:00
|
|
|
println!("failure on test {}",test_idx);
|
|
|
|
println!("text of test case: \"{}\"", teststr);
|
|
|
|
println!("");
|
|
|
|
println!("uh oh, matches but shouldn't:");
|
2013-06-29 05:59:08 -07:00
|
|
|
std::io::println(fmt!("varref: %?",varref));
|
2013-09-05 13:28:57 -07:00
|
|
|
// good lord, you can't make a path with 0 segments, can you?
|
|
|
|
println!("varref's first segment's uint: {}, and string: \"{}\"",
|
|
|
|
varref.segments[0].identifier.name,
|
|
|
|
ident_to_str(&varref.segments[0].identifier));
|
2013-06-29 05:59:08 -07:00
|
|
|
std::io::println(fmt!("binding: %?", bindings[binding_idx]));
|
2013-09-05 09:29:31 -07:00
|
|
|
ast_util::display_sctable(get_sctable());
|
2013-06-29 05:59:08 -07:00
|
|
|
}
|
|
|
|
assert!(!fail);
|
|
|
|
}
|
|
|
|
}
|
2013-06-25 11:40:51 -07:00
|
|
|
}
|
|
|
|
}
|
2013-05-21 16:57:21 -07:00
|
|
|
|
2013-07-12 18:35:47 -07:00
|
|
|
#[test] fn fmt_in_macro_used_inside_module_macro() {
|
|
|
|
let crate_str = @"macro_rules! fmt_wrap(($b:expr)=>(fmt!(\"left: %?\", $b)))
|
|
|
|
macro_rules! foo_module (() => (mod generated { fn a() { let xx = 147; fmt_wrap!(xx);}}))
|
|
|
|
foo_module!()
|
|
|
|
";
|
|
|
|
let cr = expand_crate_str(crate_str);
|
|
|
|
// find the xx binding
|
|
|
|
let bindings = @mut ~[];
|
|
|
|
visit::walk_crate(&mut new_name_finder(bindings), cr, ());
|
|
|
|
let cxbinds : ~[&ast::Ident] =
|
|
|
|
bindings.iter().filter(|b|{@"xx" == (ident_to_str(*b))}).collect();
|
|
|
|
let cxbind = match cxbinds {
|
|
|
|
[b] => b,
|
|
|
|
_ => fail!("expected just one binding for ext_cx")
|
|
|
|
};
|
|
|
|
let resolved_binding = mtwt_resolve(*cxbind);
|
|
|
|
// find all the xx varrefs:
|
|
|
|
let varrefs = @mut ~[];
|
|
|
|
visit::walk_crate(&mut new_path_finder(varrefs), cr, ());
|
|
|
|
// the xx binding should bind all of the xx varrefs:
|
|
|
|
for (idx,v) in varrefs.iter().filter(|p|{ p.segments.len() == 1
|
|
|
|
&& (@"xx" == (ident_to_str(&p.segments[0].identifier)))
|
|
|
|
}).enumerate() {
|
|
|
|
if (mtwt_resolve(v.segments[0].identifier) != resolved_binding) {
|
|
|
|
std::io::println("uh oh, xx binding didn't match xx varref:");
|
|
|
|
std::io::println(fmt!("this is xx varref # %?",idx));
|
|
|
|
std::io::println(fmt!("binding: %?",cxbind));
|
|
|
|
std::io::println(fmt!("resolves to: %?",resolved_binding));
|
|
|
|
std::io::println(fmt!("varref: %?",v.segments[0].identifier));
|
|
|
|
std::io::println(fmt!("resolves to: %?",mtwt_resolve(v.segments[0].identifier)));
|
|
|
|
let table = get_sctable();
|
|
|
|
std::io::println("SC table:");
|
|
|
|
for (idx,val) in table.table.iter().enumerate() {
|
|
|
|
std::io::println(fmt!("%4u : %?",idx,val));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert_eq!(mtwt_resolve(v.segments[0].identifier),resolved_binding);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-06-04 14:56:33 -07:00
|
|
|
#[test]
|
|
|
|
fn pat_idents(){
|
2013-06-13 03:02:55 +10:00
|
|
|
let pat = string_to_pat(@"(a,Foo{x:c @ (b,9),y:Bar(4,d)})");
|
2013-06-04 14:56:33 -07:00
|
|
|
let idents = @mut ~[];
|
2013-07-19 18:42:11 -07:00
|
|
|
let pat_idents = new_name_finder(idents);
|
|
|
|
pat_idents.visit_pat(pat, ());
|
|
|
|
assert_eq!(idents, @mut strs_to_idents(~["a","c","b","d"]));
|
2013-06-04 14:56:33 -07:00
|
|
|
}
|
2013-06-07 12:28:03 -07:00
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|