expand.rs 70.7 KB
Newer Older
S
Steven Fackler 已提交
1
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 3 4 5 6 7 8 9 10
// 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.

11
use ast::{Block, Crate, DeclLocal, ExprMac, PatMac};
12
use ast::{Local, Ident, Mac_};
13 14
use ast::{ItemMac, MacStmtWithSemicolon, Mrk, Stmt, StmtDecl, StmtMac};
use ast::{StmtExpr, StmtSemi};
15
use ast::TokenTree;
16
use ast;
17
use ext::mtwt;
18
use ext::build::AstBuilder;
19
use attr;
20
use attr::AttrMetaMethods;
21
use codemap;
22
use codemap::{Span, Spanned, ExpnInfo, NameAndSpan, MacroBang, MacroAttribute};
P
Patrick Walton 已提交
23
use ext::base::*;
24
use feature_gate::{self, Features, GatedCfg};
J
John Clements 已提交
25
use fold;
26
use fold::*;
27
use parse;
28
use parse::token::{fresh_mark, fresh_name, intern};
29 30
use ptr::P;
use util::small_vector::SmallVector;
J
John Clements 已提交
31
use visit;
H
Huon Wilson 已提交
32
use visit::Visitor;
33
use std_inject;
34

35

36
pub fn expand_expr(e: P<ast::Expr>, fld: &mut MacroExpander) -> P<ast::Expr> {
37
    let expr_span = e.span;
38
    return e.and_then(|ast::Expr {id, node, span}| match node {
39

40 41
        // expr_mac should really be expr_ext or something; it's the
        // entry-point for all syntax extensions.
42
        ast::ExprMac(mac) => {
43 44 45
            let expanded_expr = match expand_mac_invoc(mac, span,
                                                       |r| r.make_expr(),
                                                       mark_expr, fld) {
J
John Clements 已提交
46 47
                Some(expr) => expr,
                None => {
48
                    return DummyResult::raw_expr(span);
J
John Clements 已提交
49 50
                }
            };
51

J
John Clements 已提交
52
            // Keep going, outside-in.
53
            let fully_expanded = fld.fold_expr(expanded_expr);
N
Nick Cameron 已提交
54
            let span = fld.new_span(span);
J
John Clements 已提交
55
            fld.cx.bt_pop();
56

57
            fully_expanded.map(|e| ast::Expr {
J
John Clements 已提交
58
                id: ast::DUMMY_NODE_ID,
59
                node: e.node,
60
                span: span,
61
            })
62
        }
63

64
        ast::ExprInPlace(placer, value_expr) => {
65 66 67 68 69 70
            // Ensure feature-gate is enabled
            feature_gate::check_for_placement_in(
                fld.cx.ecfg.features,
                &fld.cx.parse_sess.span_diagnostic,
                expr_span);

71
            let placer = fld.fold_expr(placer);
72
            let value_expr = fld.fold_expr(value_expr);
N
Nick Cameron 已提交
73
            fld.cx.expr(span, ast::ExprInPlace(placer, value_expr))
74 75
        }

P
Pythoner6 已提交
76 77 78
        ast::ExprWhile(cond, body, opt_ident) => {
            let cond = fld.fold_expr(cond);
            let (body, opt_ident) = expand_loop_block(body, opt_ident, fld);
79
            fld.cx.expr(span, ast::ExprWhile(cond, body, opt_ident))
P
Pythoner6 已提交
80 81
        }

J
John Gallagher 已提交
82
        ast::ExprWhileLet(pat, expr, body, opt_ident) => {
N
Nick Cameron 已提交
83 84
            let pat = fld.fold_pat(pat);
            let expr = fld.fold_expr(expr);
85 86 87 88 89 90 91 92 93 94 95 96

            // Hygienic renaming of the body.
            let ((body, opt_ident), mut rewritten_pats) =
                rename_in_scope(vec![pat],
                                fld,
                                (body, opt_ident),
                                |rename_fld, fld, (body, opt_ident)| {
                expand_loop_block(rename_fld.fold_block(body), opt_ident, fld)
            });
            assert!(rewritten_pats.len() == 1);

            fld.cx.expr(span, ast::ExprWhileLet(rewritten_pats.remove(0), expr, body, opt_ident))
97 98
        }

E
Edward Wang 已提交
99
        ast::ExprLoop(loop_block, opt_ident) => {
100
            let (loop_block, opt_ident) = expand_loop_block(loop_block, opt_ident, fld);
101
            fld.cx.expr(span, ast::ExprLoop(loop_block, opt_ident))
E
Edward Wang 已提交
102 103
        }

104
        ast::ExprForLoop(pat, head, body, opt_ident) => {
105
            let pat = fld.fold_pat(pat);
106 107 108 109 110 111 112 113 114 115 116

            // Hygienic renaming of the for loop body (for loop binds its pattern).
            let ((body, opt_ident), mut rewritten_pats) =
                rename_in_scope(vec![pat],
                                fld,
                                (body, opt_ident),
                                |rename_fld, fld, (body, opt_ident)| {
                expand_loop_block(rename_fld.fold_block(body), opt_ident, fld)
            });
            assert!(rewritten_pats.len() == 1);

117
            let head = fld.fold_expr(head);
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
            fld.cx.expr(span, ast::ExprForLoop(rewritten_pats.remove(0), head, body, opt_ident))
        }

        ast::ExprIfLet(pat, sub_expr, body, else_opt) => {
            let pat = fld.fold_pat(pat);

            // Hygienic renaming of the body.
            let (body, mut rewritten_pats) =
                rename_in_scope(vec![pat],
                                fld,
                                body,
                                |rename_fld, fld, body| {
                fld.fold_block(rename_fld.fold_block(body))
            });
            assert!(rewritten_pats.len() == 1);

            let else_opt = else_opt.map(|else_opt| fld.fold_expr(else_opt));
            let sub_expr = fld.fold_expr(sub_expr);
            fld.cx.expr(span, ast::ExprIfLet(rewritten_pats.remove(0), sub_expr, body, else_opt))
137 138
        }

139
        ast::ExprClosure(capture_clause, fn_decl, block) => {
140
            let (rewritten_fn_decl, rewritten_block)
141
                = expand_and_rename_fn_decl_and_block(fn_decl, block, fld);
142
            let new_node = ast::ExprClosure(capture_clause,
143 144
                                            rewritten_fn_decl,
                                            rewritten_block);
N
Nick Cameron 已提交
145
            P(ast::Expr{id:id, node: new_node, span: fld.new_span(span)})
146 147
        }

148 149 150 151 152 153 154
        _ => {
            P(noop_fold_expr(ast::Expr {
                id: id,
                node: node,
                span: span
            }, fld))
        }
155
    });
156 157
}

J
John Clements 已提交
158 159 160 161
/// Expand a (not-ident-style) macro invocation. Returns the result
/// of expansion and the mark which must be applied to the result.
/// Our current interface doesn't allow us to apply the mark to the
/// result until after calling make_expr, make_items, etc.
162 163
fn expand_mac_invoc<T, F, G>(mac: ast::Mac,
                             span: codemap::Span,
J
Jorge Aparicio 已提交
164 165 166 167
                             parse_thunk: F,
                             mark_thunk: G,
                             fld: &mut MacroExpander)
                             -> Option<T> where
168
    F: for<'a> FnOnce(Box<MacResult+'a>) -> Option<T>,
J
Jorge Aparicio 已提交
169
    G: FnOnce(T, Mrk) -> T,
170
{
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
    // 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.

    let Mac_ { path: pth, tts, .. } = mac.node;
    if pth.segments.len() > 1 {
        fld.cx.span_err(pth.span,
                        "expected macro name without module \
                        separators");
        // let compilation continue
        return None;
    }
    let extname = pth.segments[0].identifier.name;
186
    match fld.cx.syntax_env.find(extname) {
187 188 189 190 191
        None => {
            fld.cx.span_err(
                pth.span,
                &format!("macro undefined: '{}!'",
                        &extname));
J
John Clements 已提交
192

193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
            // let compilation continue
            None
        }
        Some(rc) => match *rc {
            NormalTT(ref expandfun, exp_span, allow_internal_unstable) => {
                fld.cx.bt_push(ExpnInfo {
                        call_site: span,
                        callee: NameAndSpan {
                            format: MacroBang(extname),
                            span: exp_span,
                            allow_internal_unstable: allow_internal_unstable,
                        },
                    });
                let fm = fresh_mark();
                let marked_before = mark_tts(&tts[..], fm);

                // The span that we pass to the expanders we want to
                // be the root of the call stack. That's the most
                // relevant span and it's the actual invocation of
                // the macro.
                let mac_span = fld.cx.original_span();

                let opt_parsed = {
                    let expanded = expandfun.expand(fld.cx,
                                                    mac_span,
                                                    &marked_before[..]);
                    parse_thunk(expanded)
                };
                let parsed = match opt_parsed {
                    Some(e) => e,
                    None => {
224 225
                        fld.cx.span_err(
                            pth.span,
226 227 228 229
                            &format!("non-expression macro in expression position: {}",
                                    extname
                                    ));
                        return None;
230
                    }
231 232 233 234 235 236 237 238 239
                };
                Some(mark_thunk(parsed,fm))
            }
            _ => {
                fld.cx.span_err(
                    pth.span,
                    &format!("'{}' is not a tt-style macro",
                            extname));
                None
J
John Clements 已提交
240 241 242 243 244
            }
        }
    }
}

245 246 247 248 249
/// Rename loop label and expand its loop body
///
/// The renaming procedure for loop is different in the sense that the loop
/// body is in a block enclosed by loop head so the renaming of loop label
/// must be propagated to the enclosed context.
250 251 252
fn expand_loop_block(loop_block: P<Block>,
                     opt_ident: Option<Ident>,
                     fld: &mut MacroExpander) -> (P<Block>, Option<Ident>) {
E
Edward Wang 已提交
253 254
    match opt_ident {
        Some(label) => {
255
            let new_label = fresh_name(label);
E
Edward Wang 已提交
256
            let rename = (label, new_label);
257 258 259 260 261 262

            // The rename *must not* be added to the pending list of current
            // syntax context otherwise an unrelated `break` or `continue` in
            // the same context will pick that up in the deferred renaming pass
            // and be renamed incorrectly.
            let mut rename_list = vec!(rename);
263
            let mut rename_fld = IdentRenamer{renames: &mut rename_list};
264 265 266 267 268
            let renamed_ident = rename_fld.fold_ident(label);

            // The rename *must* be added to the enclosed syntax context for
            // `break` or `continue` to pick up because by definition they are
            // in a block enclosed by loop head.
269 270
            fld.cx.syntax_env.push_frame();
            fld.cx.syntax_env.info().pending_renames.push(rename);
271
            let expanded_block = expand_block_elts(loop_block, fld);
272
            fld.cx.syntax_env.pop_frame();
273 274

            (expanded_block, Some(renamed_ident))
E
Edward Wang 已提交
275
        }
276
        None => (fld.fold_block(loop_block), opt_ident)
E
Edward Wang 已提交
277 278 279
    }
}

280 281
// eval $e with a new exts frame.
// must be a macro so that $e isn't evaluated too early.
282
macro_rules! with_exts_frame {
283
    ($extsboxexpr:expr,$macros_escape:expr,$e:expr) =>
S
Steven Fackler 已提交
284 285
    ({$extsboxexpr.push_frame();
      $extsboxexpr.info().macros_escape = $macros_escape;
J
John Clements 已提交
286
      let result = $e;
S
Steven Fackler 已提交
287
      $extsboxexpr.pop_frame();
J
John Clements 已提交
288 289
      result
     })
290
}
J
John Clements 已提交
291

292
// When we enter a module, record it, for the sake of `module!`
293 294
pub fn expand_item(it: P<ast::Item>, fld: &mut MacroExpander)
                   -> SmallVector<P<ast::Item>> {
295
    let it = expand_item_multi_modifier(Annotatable::Item(it), fld);
296

297
    expand_annotatable(it, fld)
298
        .into_iter().map(|i| i.expect_item()).collect()
299 300
}

J
John Clements 已提交
301
/// Expand item_underscore
302 303
fn expand_item_underscore(item: ast::Item_, fld: &mut MacroExpander) -> ast::Item_ {
    match item {
304
        ast::ItemFn(decl, unsafety, constness, abi, generics, body) => {
J
John Clements 已提交
305
            let (rewritten_fn_decl, rewritten_body)
306
                = expand_and_rename_fn_decl_and_block(decl, body, fld);
M
Marvin Löbel 已提交
307
            let expanded_generics = fold::noop_fold_generics(generics,fld);
308 309
            ast::ItemFn(rewritten_fn_decl, unsafety, constness, abi,
                        expanded_generics, rewritten_body)
J
John Clements 已提交
310
        }
311
        _ => noop_fold_item_underscore(item, fld)
J
John Clements 已提交
312 313 314
    }
}

315 316
// does this attribute list contain "macro_use" ?
fn contains_macro_use(fld: &mut MacroExpander, attrs: &[ast::Attribute]) -> bool {
317
    for attr in attrs {
318 319 320 321
        let mut is_use = attr.check_name("macro_use");
        if attr.check_name("macro_escape") {
            fld.cx.span_warn(attr.span, "macro_escape is a deprecated synonym for macro_use");
            is_use = true;
322
            if let ast::AttrStyle::Inner = attr.node.style {
323
                fld.cx.fileline_help(attr.span, "consider an outer attribute, \
324 325 326 327 328 329 330 331 332 333 334 335 336
                                             #[macro_use] mod ...");
            }
        };

        if is_use {
            match attr.node.value.node {
                ast::MetaWord(..) => (),
                _ => fld.cx.span_err(attr.span, "arguments to macro_use are not allowed here"),
            }
            return true;
        }
    }
    false
J
John Clements 已提交
337 338
}

339 340
// Support for item-position macro invocations, exactly the same
// logic as for expression-position macro invocations.
341 342
pub fn expand_item_mac(it: P<ast::Item>,
                       fld: &mut MacroExpander) -> SmallVector<P<ast::Item>> {
343 344 345
    let (extname, path_span, tts, span, attrs, ident) = it.and_then(|it| match it.node {
        ItemMac(codemap::Spanned { node: Mac_ { path, tts, .. }, .. }) =>
            (path.segments[0].identifier.name, path.span, tts, it.span, it.attrs, it.ident),
346
        _ => fld.cx.span_bug(it.span, "invalid item macro invocation")
347
    });
348

349
    let fm = fresh_mark();
350
    let items = {
351
        let expanded = match fld.cx.syntax_env.find(extname) {
352
            None => {
353
                fld.cx.span_err(path_span,
J
Jorge Aparicio 已提交
354
                                &format!("macro undefined: '{}!'",
355
                                        extname));
356 357 358
                // let compilation continue
                return SmallVector::zero();
            }
359

360
            Some(rc) => match *rc {
361 362
                NormalTT(ref expander, tt_span, allow_internal_unstable) => {
                    if ident.name != parse::token::special_idents::invalid.name {
363
                        fld.cx
364
                            .span_err(path_span,
365
                                      &format!("macro {}! expects no ident argument, given '{}'",
366
                                               extname,
367
                                               ident));
368 369 370
                        return SmallVector::zero();
                    }
                    fld.cx.bt_push(ExpnInfo {
371
                        call_site: span,
372
                        callee: NameAndSpan {
M
Manish Goregaokar 已提交
373
                            format: MacroBang(extname),
374
                            span: tt_span,
375
                            allow_internal_unstable: allow_internal_unstable,
376 377 378
                        }
                    });
                    // mark before expansion:
379
                    let marked_before = mark_tts(&tts[..], fm);
380
                    expander.expand(fld.cx, span, &marked_before[..])
381
                }
382 383
                IdentTT(ref expander, tt_span, allow_internal_unstable) => {
                    if ident.name == parse::token::special_idents::invalid.name {
384
                        fld.cx.span_err(path_span,
J
Jorge Aparicio 已提交
385
                                        &format!("macro {}! expects an ident argument",
386
                                                extname));
387
                        return SmallVector::zero();
388
                    }
389
                    fld.cx.bt_push(ExpnInfo {
390
                        call_site: span,
391
                        callee: NameAndSpan {
M
Manish Goregaokar 已提交
392
                            format: MacroBang(extname),
393
                            span: tt_span,
394
                            allow_internal_unstable: allow_internal_unstable,
395 396 397
                        }
                    });
                    // mark before expansion:
398
                    let marked_tts = mark_tts(&tts[..], fm);
399
                    expander.expand(fld.cx, span, ident, marked_tts)
400
                }
401
                MacroRulesTT => {
402
                    if ident.name == parse::token::special_idents::invalid.name {
S
Steve Klabnik 已提交
403
                        fld.cx.span_err(path_span, "macro_rules! expects an ident argument");
404
                        return SmallVector::zero();
405
                    }
406

407
                    fld.cx.bt_push(ExpnInfo {
408
                        call_site: span,
409
                        callee: NameAndSpan {
M
Manish Goregaokar 已提交
410
                            format: MacroBang(extname),
411
                            span: None,
412 413 414 415
                            // `macro_rules!` doesn't directly allow
                            // unstable (this is orthogonal to whether
                            // the macro it creates allows it)
                            allow_internal_unstable: false,
416 417
                        }
                    });
418
                    // DON'T mark before expansion.
419

420
                    let allow_internal_unstable = attr::contains_name(&attrs,
421 422 423 424 425 426 427 428 429
                                                                      "allow_internal_unstable");

                    // ensure any #[allow_internal_unstable]s are
                    // detected (including nested macro definitions
                    // etc.)
                    if allow_internal_unstable && !fld.cx.ecfg.enable_allow_internal_unstable() {
                        feature_gate::emit_feature_err(
                            &fld.cx.parse_sess.span_diagnostic,
                            "allow_internal_unstable",
430
                            span,
431
                            feature_gate::GateIssue::Language,
432 433 434
                            feature_gate::EXPLAIN_ALLOW_INTERNAL_UNSTABLE)
                    }

435
                    let export = attr::contains_name(&attrs, "macro_export");
436
                    let def = ast::MacroDef {
437 438
                        ident: ident,
                        attrs: attrs,
439
                        id: ast::DUMMY_NODE_ID,
440
                        span: span,
441
                        imported_from: None,
442
                        export: export,
K
Keegan McAllister 已提交
443
                        use_locally: true,
444
                        allow_internal_unstable: allow_internal_unstable,
445 446
                        body: tts,
                    };
447
                    fld.cx.insert_macro(def);
448 449 450 451

                    // macro_rules! has a side effect but expands to nothing.
                    fld.cx.bt_pop();
                    return SmallVector::zero();
452 453
                }
                _ => {
454
                    fld.cx.span_err(span,
J
Jorge Aparicio 已提交
455
                                    &format!("{}! is not legal in item position",
456
                                            extname));
457
                    return SmallVector::zero();
458
                }
J
John Clements 已提交
459
            }
460 461
        };

462
        expanded.make_items()
463
    };
464

465 466
    let items = match items {
        Some(items) => {
A
Aaron Turon 已提交
467
            items.into_iter()
468
                .map(|i| mark_item(i, fm))
A
Aaron Turon 已提交
469
                .flat_map(|i| fld.fold_item(i).into_iter())
470 471
                .collect()
        }
472
        None => {
473
            fld.cx.span_err(path_span,
J
Jorge Aparicio 已提交
474
                            &format!("non-item macro in item position: {}",
475
                                    extname));
476
            return SmallVector::zero();
477
        }
478
    };
479

480
    fld.cx.bt_pop();
481
    items
482 483
}

J
John Clements 已提交
484
/// Expand a stmt
485 486 487
fn expand_stmt(stmt: P<Stmt>, fld: &mut MacroExpander) -> SmallVector<P<Stmt>> {
    let stmt = stmt.and_then(|stmt| stmt);
    let (mac, style) = match stmt.node {
488
        StmtMac(mac, style) => (mac, style),
489
        _ => return expand_non_macro_stmt(stmt, fld)
490
    };
491 492 493 494 495 496 497

    let maybe_new_items =
        expand_mac_invoc(mac.and_then(|m| m), stmt.span,
                         |r| r.make_stmts(),
                         |stmts, mark| stmts.move_map(|m| mark_stmt(m, mark)),
                         fld);

498
    let mut fully_expanded = match maybe_new_items {
499 500
        Some(stmts) => {
            // Keep going, outside-in.
501
            let new_items = stmts.into_iter().flat_map(|s| {
502
                fld.fold_stmt(s).into_iter()
503 504 505
            }).collect();
            fld.cx.bt_pop();
            new_items
506
        }
507
        None => SmallVector::zero()
508 509
    };

510 511
    // If this is a macro invocation with a semicolon, then apply that
    // semicolon to the final statement produced by expansion.
512
    if style == MacStmtWithSemicolon {
513 514 515 516 517 518 519 520 521 522 523
        if let Some(stmt) = fully_expanded.pop() {
            let new_stmt = stmt.map(|Spanned {node, span}| {
                Spanned {
                    node: match node {
                        StmtExpr(e, stmt_id) => StmtSemi(e, stmt_id),
                        _ => node /* might already have a semi */
                    },
                    span: span
                }
            });
            fully_expanded.push(new_stmt);
524
        }
525
    }
526 527

    fully_expanded
528 529
}

530 531
// expand a non-macro stmt. this is essentially the fallthrough for
// expand_stmt, above.
532 533
fn expand_non_macro_stmt(Spanned {node, span: stmt_span}: Stmt, fld: &mut MacroExpander)
                         -> SmallVector<P<Stmt>> {
534
    // is it a let?
535 536 537 538
    match node {
        StmtDecl(decl, node_id) => decl.and_then(|Spanned {node: decl, span}| match decl {
            DeclLocal(local) => {
                // take it apart:
539
                let rewritten_local = local.map(|Local {id, pat, ty, init, span}| {
540 541
                    // expand the ty since TyFixedLengthVec contains an Expr
                    // and thus may have a macro use
S
Seo Sanghyeon 已提交
542
                    let expanded_ty = ty.map(|t| fld.fold_ty(t));
543
                    // expand the pat (it might contain macro uses):
544
                    let expanded_pat = fld.fold_pat(pat);
545
                    // find the PatIdents in the pattern:
546 547 548 549
                    // oh dear heaven... this is going to include the enum
                    // names, as well... but that should be okay, as long as
                    // the new names are gensyms for the old ones.
                    // generate fresh names, push them to a new pending list
S
Seo Sanghyeon 已提交
550
                    let idents = pattern_bindings(&expanded_pat);
551
                    let mut new_pending_renames =
552
                        idents.iter().map(|ident| (*ident, fresh_name(*ident))).collect();
553 554
                    // rewrite the pattern using the new names (the old
                    // ones have already been applied):
555
                    let rewritten_pat = {
556 557
                        // nested binding to allow borrow to expire:
                        let mut rename_fld = IdentRenamer{renames: &mut new_pending_renames};
558 559 560
                        rename_fld.fold_pat(expanded_pat)
                    };
                    // add them to the existing pending renames:
561
                    fld.cx.syntax_env.info().pending_renames
562
                          .extend(new_pending_renames);
563 564 565 566 567 568
                    Local {
                        id: id,
                        ty: expanded_ty,
                        pat: rewritten_pat,
                        // also, don't forget to expand the init:
                        init: init.map(|e| fld.fold_expr(e)),
569
                        span: span
570 571 572 573 574 575 576 577 578 579
                    }
                });
                SmallVector::one(P(Spanned {
                    node: StmtDecl(P(Spanned {
                            node: DeclLocal(rewritten_local),
                            span: span
                        }),
                        node_id),
                    span: stmt_span
                }))
S
Steven Fackler 已提交
580
            }
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
            _ => {
                noop_fold_stmt(Spanned {
                    node: StmtDecl(P(Spanned {
                            node: decl,
                            span: span
                        }),
                        node_id),
                    span: stmt_span
                }, fld)
            }
        }),
        _ => {
            noop_fold_stmt(Spanned {
                node: node,
                span: stmt_span
            }, fld)
        }
598 599 600
    }
}

J
John Clements 已提交
601
// expand the arm of a 'match', renaming for macro hygiene
602
fn expand_arm(arm: ast::Arm, fld: &mut MacroExpander) -> ast::Arm {
603
    // expand pats... they might contain macro uses:
604
    let expanded_pats = arm.pats.move_map(|pat| fld.fold_pat(pat));
605
    if expanded_pats.is_empty() {
S
Steve Klabnik 已提交
606
        panic!("encountered match arm with 0 patterns");
J
John Clements 已提交
607
    }
608

609
    // apply renaming and then expansion to the guard and the body:
610 611 612 613 614 615 616 617 618 619
    let ((rewritten_guard, rewritten_body), rewritten_pats) =
        rename_in_scope(expanded_pats,
                        fld,
                        (arm.guard, arm.body),
                        |rename_fld, fld, (ag, ab)|{
        let rewritten_guard = ag.map(|g| fld.fold_expr(rename_fld.fold_expr(g)));
        let rewritten_body = fld.fold_expr(rename_fld.fold_expr(ab));
        (rewritten_guard, rewritten_body)
    });

J
John Clements 已提交
620
    ast::Arm {
621
        attrs: fold::fold_attrs(arm.attrs, fld),
622 623 624
        pats: rewritten_pats,
        guard: rewritten_guard,
        body: rewritten_body,
J
John Clements 已提交
625
    }
J
John Clements 已提交
626 627
}

628 629 630 631 632 633 634 635 636
fn rename_in_scope<X, F>(pats: Vec<P<ast::Pat>>,
                         fld: &mut MacroExpander,
                         x: X,
                         f: F)
                         -> (X, Vec<P<ast::Pat>>)
    where F: Fn(&mut IdentRenamer, &mut MacroExpander, X) -> X
{
    // all of the pats must have the same set of bindings, so use the
    // first one to extract them and generate new names:
S
Seo Sanghyeon 已提交
637
    let idents = pattern_bindings(&pats[0]);
638 639 640 641 642 643 644 645 646
    let new_renames = idents.into_iter().map(|id| (id, fresh_name(id))).collect();
    // apply the renaming, but only to the PatIdents:
    let mut rename_pats_fld = PatIdentRenamer{renames:&new_renames};
    let rewritten_pats = pats.move_map(|pat| rename_pats_fld.fold_pat(pat));

    let mut rename_fld = IdentRenamer{ renames:&new_renames };
    (f(&mut rename_fld, fld, x), rewritten_pats)
}

647 648 649
/// A visitor that extracts the PatIdent (binding) paths
/// from a given thingy and puts them in a mutable
/// array
650
#[derive(Clone)]
651
struct PatIdentFinder {
652
    ident_accumulator: Vec<ast::Ident>
653 654
}

655
impl<'v> Visitor<'v> for PatIdentFinder {
656
    fn visit_pat(&mut self, pattern: &ast::Pat) {
657
        match *pattern {
658
            ast::Pat { id: _, node: ast::PatIdent(_, ref path1, ref inner), span: _ } => {
659
                self.ident_accumulator.push(path1.node);
660
                // visit optional subpattern of PatIdent:
661
                if let Some(ref subpat) = *inner {
S
Seo Sanghyeon 已提交
662
                    self.visit_pat(subpat)
J
John Clements 已提交
663 664
                }
            }
665
            // use the default traversal for non-PatIdents
666
            _ => visit::walk_pat(self, pattern)
667 668 669 670
        }
    }
}

671
/// find the PatIdent paths in a pattern
672
fn pattern_bindings(pat: &ast::Pat) -> Vec<ast::Ident> {
673
    let mut name_finder = PatIdentFinder{ident_accumulator:Vec::new()};
674
    name_finder.visit_pat(pat);
675
    name_finder.ident_accumulator
676 677
}

J
John Clements 已提交
678 679 680
/// find the PatIdent paths in a
fn fn_decl_arg_bindings(fn_decl: &ast::FnDecl) -> Vec<ast::Ident> {
    let mut pat_idents = PatIdentFinder{ident_accumulator:Vec::new()};
681
    for arg in &fn_decl.inputs {
S
Seo Sanghyeon 已提交
682
        pat_idents.visit_pat(&arg.pat);
J
John Clements 已提交
683 684 685 686
    }
    pat_idents.ident_accumulator
}

J
John Clements 已提交
687
// expand a block. pushes a new exts_frame, then calls expand_block_elts
688
pub fn expand_block(blk: P<Block>, fld: &mut MacroExpander) -> P<Block> {
689
    // see note below about treatment of exts table
690
    with_exts_frame!(fld.cx.syntax_env,false,
691
                     expand_block_elts(blk, fld))
692 693
}

J
John Clements 已提交
694
// expand the elements of a block.
695
pub fn expand_block_elts(b: P<Block>, fld: &mut MacroExpander) -> P<Block> {
696
    b.map(|Block {id, stmts, expr, rules, span}| {
A
Aaron Turon 已提交
697
        let new_stmts = stmts.into_iter().flat_map(|x| {
698
            // perform all pending renames
699
            let renamed_stmt = {
700
                let pending_renames = &mut fld.cx.syntax_env.info().pending_renames;
701
                let mut rename_fld = IdentRenamer{renames:pending_renames};
702
                rename_fld.fold_stmt(x).expect_one("rename_fold didn't return one value")
703
            };
704
            // expand macros in the statement
A
Aaron Turon 已提交
705
            fld.fold_stmt(renamed_stmt).into_iter()
706
        }).collect();
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
        let new_expr = expr.map(|x| {
            let expr = {
                let pending_renames = &mut fld.cx.syntax_env.info().pending_renames;
                let mut rename_fld = IdentRenamer{renames:pending_renames};
                rename_fld.fold_expr(x)
            };
            fld.fold_expr(expr)
        });
        Block {
            id: fld.new_id(id),
            stmts: new_stmts,
            expr: new_expr,
            rules: rules,
            span: span
        }
722
    })
J
John Clements 已提交
723 724
}

725 726 727 728
fn expand_pat(p: P<ast::Pat>, fld: &mut MacroExpander) -> P<ast::Pat> {
    match p.node {
        PatMac(_) => {}
        _ => return noop_fold_pat(p, fld)
K
Keegan McAllister 已提交
729
    }
730 731
    p.map(|ast::Pat {node, span, ..}| {
        let (pth, tts) = match node {
732
            PatMac(mac) => (mac.node.path, mac.node.tts),
733 734
            _ => unreachable!()
        };
735
        if pth.segments.len() > 1 {
736 737
            fld.cx.span_err(pth.span, "expected macro name without module separators");
            return DummyResult::raw_pat(span);
K
Keegan McAllister 已提交
738
        }
739
        let extname = pth.segments[0].identifier.name;
740
        let marked_after = match fld.cx.syntax_env.find(extname) {
741 742
            None => {
                fld.cx.span_err(pth.span,
J
Jorge Aparicio 已提交
743
                                &format!("macro undefined: '{}!'",
744
                                        extname));
745 746 747
                // let compilation continue
                return DummyResult::raw_pat(span);
            }
K
Keegan McAllister 已提交
748

749
            Some(rc) => match *rc {
750
                NormalTT(ref expander, tt_span, allow_internal_unstable) => {
751 752 753
                    fld.cx.bt_push(ExpnInfo {
                        call_site: span,
                        callee: NameAndSpan {
M
Manish Goregaokar 已提交
754
                            format: MacroBang(extname),
755 756
                            span: tt_span,
                            allow_internal_unstable: allow_internal_unstable,
757 758
                        }
                    });
K
Keegan McAllister 已提交
759

760
                    let fm = fresh_mark();
761
                    let marked_before = mark_tts(&tts[..], fm);
762
                    let mac_span = fld.cx.original_span();
763 764 765 766
                    let pat = expander.expand(fld.cx,
                                              mac_span,
                                              &marked_before[..]).make_pat();
                    let expanded = match pat {
767 768 769 770
                        Some(e) => e,
                        None => {
                            fld.cx.span_err(
                                pth.span,
J
Jorge Aparicio 已提交
771
                                &format!(
772
                                    "non-pattern macro in pattern position: {}",
773
                                    extname
774
                                    )
775 776 777 778
                            );
                            return DummyResult::raw_pat(span);
                        }
                    };
779

780 781 782 783 784
                    // mark after:
                    mark_pat(expanded,fm)
                }
                _ => {
                    fld.cx.span_err(span,
J
Jorge Aparicio 已提交
785
                                    &format!("{}! is not legal in pattern position",
786
                                            extname));
787 788
                    return DummyResult::raw_pat(span);
                }
789
            }
790
        };
K
Keegan McAllister 已提交
791

792 793 794
        let fully_expanded =
            fld.fold_pat(marked_after).node.clone();
        fld.cx.bt_pop();
K
Keegan McAllister 已提交
795

796 797 798 799 800 801
        ast::Pat {
            id: ast::DUMMY_NODE_ID,
            node: fully_expanded,
            span: span
        }
    })
K
Keegan McAllister 已提交
802 803
}

J
John Clements 已提交
804 805 806
/// A tree-folder that applies every rename in its (mutable) list
/// to every identifier, including both bindings and varrefs
/// (and lots of things that will turn out to be neither)
807
pub struct IdentRenamer<'a> {
808
    renames: &'a mtwt::RenameList,
809 810
}

811
impl<'a> Folder for IdentRenamer<'a> {
812
    fn fold_ident(&mut self, id: Ident) -> Ident {
813
        Ident::new(id.name, mtwt::apply_renames(self.renames, id.ctxt))
814
    }
K
Keegan McAllister 已提交
815 816
    fn fold_mac(&mut self, mac: ast::Mac) -> ast::Mac {
        fold::noop_fold_mac(mac, self)
J
John Clements 已提交
817
    }
818 819
}

J
John Clements 已提交
820 821 822 823 824 825 826 827 828
/// A tree-folder that applies every rename in its list to
/// the idents that are in PatIdent patterns. This is more narrowly
/// focused than IdentRenamer, and is needed for FnDecl,
/// where we want to rename the args but not the fn name or the generics etc.
pub struct PatIdentRenamer<'a> {
    renames: &'a mtwt::RenameList,
}

impl<'a> Folder for PatIdentRenamer<'a> {
829
    fn fold_pat(&mut self, pat: P<ast::Pat>) -> P<ast::Pat> {
J
John Clements 已提交
830
        match pat.node {
831 832 833 834 835 836
            ast::PatIdent(..) => {},
            _ => return noop_fold_pat(pat, self)
        }

        pat.map(|ast::Pat {id, node, span}| match node {
            ast::PatIdent(binding_mode, Spanned{span: sp, node: ident}, sub) => {
837 838
                let new_ident = Ident::new(ident.name,
                                           mtwt::apply_renames(self.renames, ident.ctxt));
J
John Clements 已提交
839 840
                let new_node =
                    ast::PatIdent(binding_mode,
841
                                  Spanned{span: self.new_span(sp), node: new_ident},
J
John Clements 已提交
842
                                  sub.map(|p| self.fold_pat(p)));
843 844
                ast::Pat {
                    id: id,
J
John Clements 已提交
845
                    node: new_node,
846
                    span: self.new_span(span)
J
John Clements 已提交
847 848
                }
            },
849 850
            _ => unreachable!()
        })
851
    }
K
Keegan McAllister 已提交
852 853
    fn fold_mac(&mut self, mac: ast::Mac) -> ast::Mac {
        fold::noop_fold_mac(mac, self)
J
John Clements 已提交
854
    }
K
Kevin Atkinson 已提交
855 856
}

857 858 859 860 861 862 863
fn expand_annotatable(a: Annotatable,
                      fld: &mut MacroExpander)
                      -> SmallVector<Annotatable> {
    let a = expand_item_multi_modifier(a, fld);

    let mut decorator_items = SmallVector::zero();
    let mut new_attrs = Vec::new();
864
    expand_decorators(a.clone(), fld, &mut decorator_items, &mut new_attrs);
865 866 867 868 869 870 871 872 873 874 875 876 877

    let mut new_items: SmallVector<Annotatable> = match a {
        Annotatable::Item(it) => match it.node {
            ast::ItemMac(..) => {
                expand_item_mac(it, fld).into_iter().map(|i| Annotatable::Item(i)).collect()
            }
            ast::ItemMod(_) | ast::ItemForeignMod(_) => {
                let valid_ident =
                    it.ident.name != parse::token::special_idents::invalid.name;

                if valid_ident {
                    fld.cx.mod_push(it.ident);
                }
878
                let macro_use = contains_macro_use(fld, &new_attrs[..]);
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
                let result = with_exts_frame!(fld.cx.syntax_env,
                                              macro_use,
                                              noop_fold_item(it, fld));
                if valid_ident {
                    fld.cx.mod_pop();
                }
                result.into_iter().map(|i| Annotatable::Item(i)).collect()
            },
            _ => {
                let it = P(ast::Item {
                    attrs: new_attrs,
                    ..(*it).clone()
                });
                noop_fold_item(it, fld).into_iter().map(|i| Annotatable::Item(i)).collect()
            }
        },
895

896
        Annotatable::TraitItem(it) => match it.node {
897 898 899 900 901 902 903 904 905
            ast::MethodTraitItem(_, Some(_)) => SmallVector::one(it.map(|ti| ast::TraitItem {
                id: ti.id,
                ident: ti.ident,
                attrs: ti.attrs,
                node: match ti.node  {
                    ast::MethodTraitItem(sig, Some(body)) => {
                        let (sig, body) = expand_and_rename_method(sig, body, fld);
                        ast::MethodTraitItem(sig, Some(body))
                    }
906
                    _ => unreachable!()
907 908 909 910 911 912
                },
                span: fld.new_span(ti.span)
            })),
            _ => fold::noop_fold_trait_item(it, fld)
        }.into_iter().map(Annotatable::TraitItem).collect(),

913
        Annotatable::ImplItem(ii) => {
914
            expand_impl_item(ii, fld).into_iter().map(Annotatable::ImplItem).collect()
915 916 917
        }
    };

918
    new_items.push_all(decorator_items);
919 920 921
    new_items
}

922 923 924 925 926 927 928 929
// Partition a set of attributes into one kind of attribute, and other kinds.
macro_rules! partition {
    ($fn_name: ident, $variant: ident) => {
        #[allow(deprecated)] // The `allow` is needed because the `Modifier` variant might be used.
        fn $fn_name(attrs: &[ast::Attribute],
                    fld: &MacroExpander)
                     -> (Vec<ast::Attribute>, Vec<ast::Attribute>) {
            attrs.iter().cloned().partition(|attr| {
930
                match fld.cx.syntax_env.find(intern(&attr.name())) {
931 932 933 934 935 936 937
                    Some(rc) => match *rc {
                        $variant(..) => true,
                        _ => false
                    },
                    _ => false
                }
            })
938
        }
939
    }
940 941
}

942 943 944 945 946 947 948 949 950
partition!(multi_modifiers, MultiModifier);


fn expand_decorators(a: Annotatable,
                     fld: &mut MacroExpander,
                     decorator_items: &mut SmallVector<Annotatable>,
                     new_attrs: &mut Vec<ast::Attribute>)
{
    for attr in a.attrs() {
M
Manish Goregaokar 已提交
951
        let mname = intern(&attr.name());
952
        match fld.cx.syntax_env.find(mname) {
953
            Some(rc) => match *rc {
954 955 956 957 958 959
                MultiDecorator(ref dec) => {
                    attr::mark_used(&attr);

                    fld.cx.bt_push(ExpnInfo {
                        call_site: attr.span,
                        callee: NameAndSpan {
M
Manish Goregaokar 已提交
960
                            format: MacroAttribute(mname),
961 962 963 964 965 966 967 968 969 970 971 972 973
                            span: Some(attr.span),
                            // attributes can do whatever they like,
                            // for now.
                            allow_internal_unstable: true,
                        }
                    });

                    // we'd ideally decorator_items.push_all(expand_annotatable(ann, fld)),
                    // but that double-mut-borrows fld
                    let mut items: SmallVector<Annotatable> = SmallVector::zero();
                    dec.expand(fld.cx,
                               attr.span,
                               &attr.node.value,
974
                               &a,
975 976 977 978 979 980 981
                               &mut |ann| items.push(ann));
                    decorator_items.extend(items.into_iter()
                        .flat_map(|ann| expand_annotatable(ann, fld).into_iter()));

                    fld.cx.bt_pop();
                }
                _ => new_attrs.push((*attr).clone()),
982
            },
983
            _ => new_attrs.push((*attr).clone()),
984
        }
985
    }
986 987 988 989 990 991 992 993 994 995 996 997 998 999
}

fn expand_item_multi_modifier(mut it: Annotatable,
                              fld: &mut MacroExpander)
                              -> Annotatable {
    let (modifiers, other_attrs) = multi_modifiers(it.attrs(), fld);

    // Update the attrs, leave everything else alone. Is this mutation really a good idea?
    it = it.fold_attrs(other_attrs);

    if modifiers.is_empty() {
        return it
    }

1000
    for attr in &modifiers {
M
Manish Goregaokar 已提交
1001
        let mname = intern(&attr.name());
1002

1003
        match fld.cx.syntax_env.find(mname) {
1004 1005 1006 1007 1008 1009
            Some(rc) => match *rc {
                MultiModifier(ref mac) => {
                    attr::mark_used(attr);
                    fld.cx.bt_push(ExpnInfo {
                        call_site: attr.span,
                        callee: NameAndSpan {
M
Manish Goregaokar 已提交
1010
                            format: MacroAttribute(mname),
1011
                            span: Some(attr.span),
1012 1013 1014
                            // attributes can do whatever they like,
                            // for now
                            allow_internal_unstable: true,
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
                        }
                    });
                    it = mac.expand(fld.cx, attr.span, &*attr.node.value, it);
                    fld.cx.bt_pop();
                }
                _ => unreachable!()
            },
            _ => unreachable!()
        }
    }

    // Expansion may have added new ItemModifiers.
    expand_item_multi_modifier(it, fld)
}

1030
fn expand_impl_item(ii: P<ast::ImplItem>, fld: &mut MacroExpander)
1031 1032
                 -> SmallVector<P<ast::ImplItem>> {
    match ii.node {
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
        ast::MethodImplItem(..) => SmallVector::one(ii.map(|ii| ast::ImplItem {
            id: ii.id,
            ident: ii.ident,
            attrs: ii.attrs,
            vis: ii.vis,
            node: match ii.node  {
                ast::MethodImplItem(sig, body) => {
                    let (sig, body) = expand_and_rename_method(sig, body, fld);
                    ast::MethodImplItem(sig, body)
                }
                _ => unreachable!()
            },
            span: fld.new_span(ii.span)
        })),
        ast::MacImplItem(_) => {
1048
            let (span, mac) = ii.and_then(|ii| match ii.node {
1049
                ast::MacImplItem(mac) => (ii.span, mac),
1050 1051
                _ => unreachable!()
            });
1052
            let maybe_new_items =
1053
                expand_mac_invoc(mac, span,
1054 1055
                                 |r| r.make_impl_items(),
                                 |meths, mark| meths.move_map(|m| mark_impl_item(m, mark)),
J
John Clements 已提交
1056 1057
                                 fld);

1058 1059
            match maybe_new_items {
                Some(impl_items) => {
A
Adolfo Ochagavía 已提交
1060
                    // expand again if necessary
1061 1062 1063
                    let new_items = impl_items.into_iter().flat_map(|ii| {
                        expand_impl_item(ii, fld).into_iter()
                    }).collect();
A
Adolfo Ochagavía 已提交
1064
                    fld.cx.bt_pop();
1065
                    new_items
A
Adolfo Ochagavía 已提交
1066
                }
J
John Clements 已提交
1067
                None => SmallVector::zero()
A
Adolfo Ochagavía 已提交
1068
            }
1069
        }
1070
        _ => fold::noop_fold_impl_item(ii, fld)
1071
    }
1072 1073
}

J
John Clements 已提交
1074 1075 1076
/// Given a fn_decl and a block and a MacroExpander, expand the fn_decl, then use the
/// PatIdents in its arguments to perform renaming in the FnDecl and
/// the block, returning both the new FnDecl and the new Block.
1077
fn expand_and_rename_fn_decl_and_block(fn_decl: P<ast::FnDecl>, block: P<ast::Block>,
J
John Clements 已提交
1078
                                       fld: &mut MacroExpander)
1079
                                       -> (P<ast::FnDecl>, P<ast::Block>) {
J
John Clements 已提交
1080
    let expanded_decl = fld.fold_fn_decl(fn_decl);
S
Seo Sanghyeon 已提交
1081
    let idents = fn_decl_arg_bindings(&expanded_decl);
J
John Clements 已提交
1082
    let renames =
1083
        idents.iter().map(|id| (*id,fresh_name(*id))).collect();
J
John Clements 已提交
1084 1085
    // first, a renamer for the PatIdents, for the fn_decl:
    let mut rename_pat_fld = PatIdentRenamer{renames: &renames};
1086
    let rewritten_fn_decl = rename_pat_fld.fold_fn_decl(expanded_decl);
J
John Clements 已提交
1087 1088 1089 1090 1091 1092
    // now, a renamer for *all* idents, for the body:
    let mut rename_fld = IdentRenamer{renames: &renames};
    let rewritten_body = fld.fold_block(rename_fld.fold_block(block));
    (rewritten_fn_decl,rewritten_body)
}

1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
fn expand_and_rename_method(sig: ast::MethodSig, body: P<ast::Block>,
                            fld: &mut MacroExpander)
                            -> (ast::MethodSig, P<ast::Block>) {
    let (rewritten_fn_decl, rewritten_body)
        = expand_and_rename_fn_decl_and_block(sig.decl, body, fld);
    (ast::MethodSig {
        generics: fld.fold_generics(sig.generics),
        abi: sig.abi,
        explicit_self: fld.fold_explicit_self(sig.explicit_self),
        unsafety: sig.unsafety,
N
Niko Matsakis 已提交
1103
        constness: sig.constness,
1104 1105 1106 1107
        decl: rewritten_fn_decl
    }, rewritten_body)
}

1108 1109 1110
pub fn expand_type(t: P<ast::Ty>, fld: &mut MacroExpander) -> P<ast::Ty> {
    let t = match t.node.clone() {
        ast::Ty_::TyMac(mac) => {
J
Jared Roesch 已提交
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120
            if fld.cx.ecfg.features.unwrap().type_macros {
                let expanded_ty = match expand_mac_invoc(mac, t.span,
                                                         |r| r.make_ty(),
                                                         mark_ty,
                                                         fld) {
                    Some(ty) => ty,
                    None => {
                        return DummyResult::raw_ty(t.span);
                    }
                };
1121

J
Jared Roesch 已提交
1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
                // Keep going, outside-in.
                let fully_expanded = fld.fold_ty(expanded_ty);
                fld.cx.bt_pop();

                fully_expanded.map(|t| ast::Ty {
                    id: ast::DUMMY_NODE_ID,
                    node: t.node,
                    span: t.span,
                    })
            } else {
                feature_gate::emit_feature_err(
                    &fld.cx.parse_sess.span_diagnostic,
                    "type_macros",
                    t.span,
1136 1137
                    feature_gate::GateIssue::Language,
                    "type macros are experimental");
J
Jared Roesch 已提交
1138 1139

                DummyResult::raw_ty(t.span)
J
Jared Roesch 已提交
1140
            }
1141 1142 1143
        }
        _ => t
    };
J
Jared Roesch 已提交
1144

1145 1146 1147
    fold::noop_fold_ty(t, fld)
}

J
John Clements 已提交
1148
/// A tree-folder that performs macro expansion
1149
pub struct MacroExpander<'a, 'b:'a> {
1150
    pub cx: &'a mut ExtCtxt<'b>,
N
Nick Cameron 已提交
1151 1152 1153 1154
}

impl<'a, 'b> MacroExpander<'a, 'b> {
    pub fn new(cx: &'a mut ExtCtxt<'b>) -> MacroExpander<'a, 'b> {
1155
        MacroExpander { cx: cx }
N
Nick Cameron 已提交
1156
    }
1157 1158
}

E
Eduard Burtescu 已提交
1159
impl<'a, 'b> Folder for MacroExpander<'a, 'b> {
1160
    fn fold_expr(&mut self, expr: P<ast::Expr>) -> P<ast::Expr> {
1161
        expand_expr(expr, self)
1162 1163
    }

1164
    fn fold_pat(&mut self, pat: P<ast::Pat>) -> P<ast::Pat> {
K
Keegan McAllister 已提交
1165 1166 1167
        expand_pat(pat, self)
    }

1168
    fn fold_item(&mut self, item: P<ast::Item>) -> SmallVector<P<ast::Item>> {
1169
        expand_item(item, self)
1170 1171
    }

1172
    fn fold_item_underscore(&mut self, item: ast::Item_) -> ast::Item_ {
J
John Clements 已提交
1173 1174 1175
        expand_item_underscore(item, self)
    }

1176
    fn fold_stmt(&mut self, stmt: P<ast::Stmt>) -> SmallVector<P<ast::Stmt>> {
1177
        expand_stmt(stmt, self)
1178 1179
    }

S
Steven Fackler 已提交
1180
    fn fold_block(&mut self, block: P<Block>) -> P<Block> {
1181
        expand_block(block, self)
1182 1183
    }

1184
    fn fold_arm(&mut self, arm: ast::Arm) -> ast::Arm {
J
John Clements 已提交
1185 1186 1187
        expand_arm(arm, self)
    }

1188 1189 1190
    fn fold_trait_item(&mut self, i: P<ast::TraitItem>) -> SmallVector<P<ast::TraitItem>> {
        expand_annotatable(Annotatable::TraitItem(i), self)
            .into_iter().map(|i| i.expect_trait_item()).collect()
1191 1192
    }

1193 1194 1195
    fn fold_impl_item(&mut self, i: P<ast::ImplItem>) -> SmallVector<P<ast::ImplItem>> {
        expand_annotatable(Annotatable::ImplItem(i), self)
            .into_iter().map(|i| i.expect_impl_item()).collect()
1196 1197
    }

1198 1199 1200 1201
    fn fold_ty(&mut self, ty: P<ast::Ty>) -> P<ast::Ty> {
        expand_type(ty, self)
    }

S
Steven Fackler 已提交
1202
    fn new_span(&mut self, span: Span) -> Span {
1203 1204
        new_span(self.cx, span)
    }
1205 1206
}

J
John Clements 已提交
1207 1208 1209 1210 1211
fn new_span(cx: &ExtCtxt, sp: Span) -> Span {
    /* this discards information in the case of macro-defining macros */
    Span {
        lo: sp.lo,
        hi: sp.hi,
1212
        expn_id: cx.backtrace(),
J
John Clements 已提交
1213 1214 1215
    }
}

1216
pub struct ExpansionConfig<'feat> {
1217
    pub crate_name: String,
1218
    pub features: Option<&'feat Features>,
P
Paul Collier 已提交
1219
    pub recursion_limit: usize,
1220
    pub trace_mac: bool,
1221 1222
}

1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
macro_rules! feature_tests {
    ($( fn $getter:ident = $field:ident, )*) => {
        $(
            pub fn $getter(&self) -> bool {
                match self.features {
                    Some(&Features { $field: true, .. }) => true,
                    _ => false,
                }
            }
        )*
    }
}

1236 1237
impl<'feat> ExpansionConfig<'feat> {
    pub fn default(crate_name: String) -> ExpansionConfig<'static> {
1238 1239
        ExpansionConfig {
            crate_name: crate_name,
1240
            features: None,
1241
            recursion_limit: 64,
1242
            trace_mac: false,
1243 1244
        }
    }
1245

1246 1247 1248 1249 1250 1251 1252
    feature_tests! {
        fn enable_quotes = allow_quote,
        fn enable_asm = allow_asm,
        fn enable_log_syntax = allow_log_syntax,
        fn enable_concat_idents = allow_concat_idents,
        fn enable_trace_macros = allow_trace_macros,
        fn enable_allow_internal_unstable = allow_internal_unstable,
1253
        fn enable_custom_derive = allow_custom_derive,
1254
        fn enable_pushpop_unsafe = allow_pushpop_unsafe,
1255
    }
1256 1257
}

1258 1259 1260 1261 1262
pub fn expand_crate<'feat>(parse_sess: &parse::ParseSess,
                           cfg: ExpansionConfig<'feat>,
                           // these are the macros being imported to this crate:
                           imported_macros: Vec<ast::MacroDef>,
                           user_exts: Vec<NamedSyntaxExtension>,
1263
                           feature_gated_cfgs: &mut Vec<GatedCfg>,
1264
                           c: Crate) -> Crate {
1265 1266
    let mut cx = ExtCtxt::new(parse_sess, c.config.clone(), cfg,
                              feature_gated_cfgs);
A
Alex Crichton 已提交
1267 1268 1269 1270 1271 1272 1273
    if std_inject::no_core(&c) {
        cx.crate_root = None;
    } else if std_inject::no_std(&c) {
        cx.crate_root = Some("core");
    } else {
        cx.crate_root = Some("std");
    }
1274

N
Nick Cameron 已提交
1275
    let mut expander = MacroExpander::new(&mut cx);
1276

1277
    for def in imported_macros {
1278
        expander.cx.insert_macro(def);
1279 1280
    }

1281
    for (name, extension) in user_exts {
1282
        expander.cx.syntax_env.insert(name, extension);
1283 1284
    }

1285 1286
    let mut ret = expander.fold_crate(c);
    ret.exported_macros = expander.cx.exported_macros.clone();
1287 1288
    parse_sess.span_diagnostic.handler().abort_if_errors();
    return ret;
1289
}
J
John Clements 已提交
1290

1291 1292 1293 1294 1295 1296 1297 1298
// 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:
// Marker - add a mark to a context

E
Eduard Burtescu 已提交
1299 1300
// A Marker adds the given mark to the syntax context
struct Marker { mark: Mrk }
1301

E
Eduard Burtescu 已提交
1302
impl Folder for Marker {
1303
    fn fold_ident(&mut self, id: Ident) -> Ident {
1304
        ast::Ident::new(id.name, mtwt::apply_mark(self.mark, id.ctxt))
1305
    }
1306
    fn fold_mac(&mut self, Spanned {node, span}: ast::Mac) -> ast::Mac {
1307
        Spanned {
1308 1309 1310 1311
            node: Mac_ {
                path: self.fold_path(node.path),
                tts: self.fold_tts(&node.tts),
                ctxt: mtwt::apply_mark(self.mark, node.ctxt),
1312 1313
            },
            span: span,
1314
        }
1315 1316 1317
    }
}

1318
// apply a given mark to the given token trees. Used prior to expansion of a macro.
1319
fn mark_tts(tts: &[TokenTree], m: Mrk) -> Vec<TokenTree> {
M
Marvin Löbel 已提交
1320
    noop_fold_tts(tts, &mut Marker{mark:m})
1321 1322 1323
}

// apply a given mark to the given expr. Used following the expansion of a macro.
1324
fn mark_expr(expr: P<ast::Expr>, m: Mrk) -> P<ast::Expr> {
J
John Clements 已提交
1325
    Marker{mark:m}.fold_expr(expr)
1326 1327
}

K
Keegan McAllister 已提交
1328
// apply a given mark to the given pattern. Used following the expansion of a macro.
1329
fn mark_pat(pat: P<ast::Pat>, m: Mrk) -> P<ast::Pat> {
J
John Clements 已提交
1330
    Marker{mark:m}.fold_pat(pat)
K
Keegan McAllister 已提交
1331 1332
}

1333
// apply a given mark to the given stmt. Used following the expansion of a macro.
1334 1335
fn mark_stmt(stmt: P<ast::Stmt>, m: Mrk) -> P<ast::Stmt> {
    Marker{mark:m}.fold_stmt(stmt)
J
John Clements 已提交
1336
        .expect_one("marking a stmt didn't return exactly one stmt")
1337 1338 1339
}

// apply a given mark to the given item. Used following the expansion of a macro.
1340
fn mark_item(expr: P<ast::Item>, m: Mrk) -> P<ast::Item> {
J
John Clements 已提交
1341
    Marker{mark:m}.fold_item(expr)
J
John Clements 已提交
1342 1343 1344 1345
        .expect_one("marking an item didn't return exactly one item")
}

// apply a given mark to the given item. Used following the expansion of a macro.
1346
fn mark_impl_item(ii: P<ast::ImplItem>, m: Mrk) -> P<ast::ImplItem> {
1347
    Marker{mark:m}.fold_impl_item(ii)
1348
        .expect_one("marking an impl item didn't return exactly one impl item")
1349 1350
}

1351 1352 1353 1354
fn mark_ty(ty: P<ast::Ty>, m: Mrk) -> P<ast::Ty> {
    Marker { mark: m }.fold_ty(ty)
}

J
John Clements 已提交
1355 1356
/// Check that there are no macro invocations left in the AST:
pub fn check_for_macros(sess: &parse::ParseSess, krate: &ast::Crate) {
1357
    visit::walk_crate(&mut MacroExterminator{sess:sess}, krate);
J
John Clements 已提交
1358 1359 1360 1361 1362 1363 1364
}

/// A visitor that ensures that no macro invocations remain in an AST.
struct MacroExterminator<'a>{
    sess: &'a parse::ParseSess
}

1365
impl<'a, 'v> Visitor<'v> for MacroExterminator<'a> {
K
Keegan McAllister 已提交
1366 1367
    fn visit_mac(&mut self, mac: &ast::Mac) {
        self.sess.span_diagnostic.span_bug(mac.span,
J
John Clements 已提交
1368 1369 1370 1371 1372 1373
                                           "macro exterminator: expected AST \
                                           with no macro invocations");
    }
}


J
John Clements 已提交
1374
#[cfg(test)]
1375
mod tests {
A
Alex Crichton 已提交
1376
    use super::{pattern_bindings, expand_crate};
1377
    use super::{PatIdentFinder, IdentRenamer, PatIdentRenamer, ExpansionConfig};
1378
    use ast;
J
Jorge Aparicio 已提交
1379
    use ast::Name;
1380
    use codemap;
1381
    use ext::mtwt;
1382
    use fold::Folder;
1383
    use parse;
1384
    use parse::token;
E
Eduard Burtescu 已提交
1385
    use util::parser_testing::{string_to_parser};
1386
    use util::parser_testing::{string_to_pat, string_to_crate, strs_to_idents};
1387
    use visit;
1388 1389 1390 1391 1392
    use visit::Visitor;

    // a visitor that extracts the paths
    // from a given thingy and puts them in a mutable
    // array (passed in to the traversal)
1393
    #[derive(Clone)]
1394
    struct PathExprFinderContext {
1395
        path_accumulator: Vec<ast::Path> ,
1396 1397
    }

1398
    impl<'v> Visitor<'v> for PathExprFinderContext {
1399
        fn visit_expr(&mut self, expr: &ast::Expr) {
1400 1401
            if let ast::ExprPath(None, ref p) = expr.node {
                self.path_accumulator.push(p.clone());
1402
            }
1403
            visit::walk_expr(self, expr);
1404 1405 1406
        }
    }

1407 1408 1409
    // find the variable references in a crate
    fn crate_varrefs(the_crate : &ast::Crate) -> Vec<ast::Path> {
        let mut path_finder = PathExprFinderContext{path_accumulator:Vec::new()};
1410
        visit::walk_crate(&mut path_finder, the_crate);
1411
        path_finder.path_accumulator
1412
    }
J
John Clements 已提交
1413

1414 1415
    /// A Visitor that extracts the identifiers from a thingy.
    // as a side note, I'm starting to want to abstract over these....
1416
    struct IdentFinder {
1417 1418
        ident_accumulator: Vec<ast::Ident>
    }
1419

1420
    impl<'v> Visitor<'v> for IdentFinder {
1421
        fn visit_ident(&mut self, _: codemap::Span, id: ast::Ident){
1422 1423 1424 1425 1426 1427 1428
            self.ident_accumulator.push(id);
        }
    }

    /// Find the idents in a crate
    fn crate_idents(the_crate: &ast::Crate) -> Vec<ast::Ident> {
        let mut ident_finder = IdentFinder{ident_accumulator: Vec::new()};
1429
        visit::walk_crate(&mut ident_finder, the_crate);
1430 1431
        ident_finder.ident_accumulator
    }
1432

J
John Clements 已提交
1433 1434 1435
    // these following tests are quite fragile, in that they don't test what
    // *kind* of failure occurs.

1436
    fn test_ecfg() -> ExpansionConfig<'static> {
1437 1438 1439
        ExpansionConfig::default("test".to_string())
    }

J
John Clements 已提交
1440
    // make sure that macros can't escape fns
1441
    #[should_panic]
J
John Clements 已提交
1442
    #[test] fn macros_cant_escape_fns_test () {
1443
        let src = "fn bogus() {macro_rules! z (() => (3+4));}\
1444
                   fn inty() -> i32 { z!() }".to_string();
1445
        let sess = parse::ParseSess::new();
J
John Clements 已提交
1446
        let crate_ast = parse::parse_crate_from_source_str(
1447
            "<test>".to_string(),
1448
            src,
E
Eduard Burtescu 已提交
1449
            Vec::new(), &sess);
J
John Clements 已提交
1450
        // should fail:
1451
        expand_crate(&sess,test_ecfg(),vec!(),vec!(), &mut vec![], crate_ast);
J
John Clements 已提交
1452 1453
    }

J
John Clements 已提交
1454
    // make sure that macros can't escape modules
1455
    #[should_panic]
J
John Clements 已提交
1456
    #[test] fn macros_cant_escape_mods_test () {
1457
        let src = "mod foo {macro_rules! z (() => (3+4));}\
1458
                   fn inty() -> i32 { z!() }".to_string();
1459
        let sess = parse::ParseSess::new();
J
John Clements 已提交
1460
        let crate_ast = parse::parse_crate_from_source_str(
1461
            "<test>".to_string(),
1462
            src,
E
Eduard Burtescu 已提交
1463
            Vec::new(), &sess);
1464
        expand_crate(&sess,test_ecfg(),vec!(),vec!(), &mut vec![], crate_ast);
J
John Clements 已提交
1465 1466
    }

1467
    // macro_use modules should allow macros to escape
J
John Clements 已提交
1468
    #[test] fn macros_can_escape_flattened_mods_test () {
1469
        let src = "#[macro_use] mod foo {macro_rules! z (() => (3+4));}\
1470
                   fn inty() -> i32 { z!() }".to_string();
1471
        let sess = parse::ParseSess::new();
J
John Clements 已提交
1472
        let crate_ast = parse::parse_crate_from_source_str(
1473
            "<test>".to_string(),
1474
            src,
E
Eduard Burtescu 已提交
1475
            Vec::new(), &sess);
1476
        expand_crate(&sess, test_ecfg(), vec!(), vec!(), &mut vec![], crate_ast);
J
John Clements 已提交
1477 1478
    }

1479
    fn expand_crate_str(crate_str: String) -> ast::Crate {
1480
        let ps = parse::ParseSess::new();
1481
        let crate_ast = panictry!(string_to_parser(&ps, crate_str).parse_crate_mod());
1482
        // the cfg argument actually does matter, here...
1483
        expand_crate(&ps,test_ecfg(),vec!(),vec!(), &mut vec![], crate_ast)
1484 1485
    }

1486 1487
    // find the pat_ident paths in a crate
    fn crate_bindings(the_crate : &ast::Crate) -> Vec<ast::Ident> {
1488
        let mut name_finder = PatIdentFinder{ident_accumulator:Vec::new()};
1489
        visit::walk_crate(&mut name_finder, the_crate);
1490 1491 1492
        name_finder.ident_accumulator
    }

1493
    #[test] fn macro_tokens_should_match(){
1494
        expand_crate_str(
1495
            "macro_rules! m((a)=>(13)) ;fn main(){m!(a);}".to_string());
1496 1497
    }

1498 1499 1500
    // should be able to use a bound identifier as a literal in a macro definition:
    #[test] fn self_macro_parsing(){
        expand_crate_str(
1501 1502
            "macro_rules! foo ((zz) => (287;));
            fn f(zz: i32) {foo!(zz);}".to_string()
1503 1504 1505
            );
    }

1506 1507 1508 1509 1510 1511 1512
    // 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
1513
    // three varrefs, the array [[1, 2], [0]] would indicate that the first
1514 1515 1516
    // binding should match the second two varrefs, and the second binding
    // should match the first varref.
    //
J
John Clements 已提交
1517 1518 1519 1520 1521 1522
    // Put differently; this is a sparse representation of a boolean matrix
    // indicating which bindings capture which identifiers.
    //
    // Note also that this matrix is dependent on the implicit ordering of
    // the bindings and the varrefs discovered by the name-finder and the path-finder.
    //
1523 1524
    // The comparisons are done post-mtwt-resolve, so we're comparing renamed
    // names; differences in marks don't matter any more.
J
John Clements 已提交
1525
    //
1526
    // oog... I also want tests that check "bound-identifier-=?". That is,
J
John Clements 已提交
1527 1528 1529 1530 1531
    // 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.
P
Paul Collier 已提交
1532
    type RenamingTest = (&'static str, Vec<Vec<usize>>, bool);
1533

1534 1535
    #[test]
    fn automatic_renaming () {
1536 1537
        let tests: Vec<RenamingTest> =
            vec!(// b & c should get new names throughout, in the expr too:
1538
                ("fn a() -> i32 { let b = 13; let c = b; b+c }",
1539
                 vec!(vec!(0,1),vec!(2)), false),
J
John Clements 已提交
1540
                // both x's should be renamed (how is this causing a bug?)
1541
                ("fn main () {let x: i32 = 13;x;}",
1542
                 vec!(vec!(0)), false),
1543
                // the use of b after the + should be renamed, the other one not:
1544
                ("macro_rules! f (($x:ident) => (b + $x)); fn a() -> i32 { let b = 13; f!(b)}",
1545
                 vec!(vec!(1)), false),
J
John Clements 已提交
1546
                // the b before the plus should not be renamed (requires marks)
1547
                ("macro_rules! f (($x:ident) => ({let b=9; ($x + b)})); fn a() -> i32 { f!(b)}",
1548
                 vec!(vec!(1)), false),
1549 1550 1551
                // 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.
1552 1553
                ("macro_rules! letty(($x:ident) => (let $x = 15;));
                  macro_rules! user(($x:ident) => ({letty!($x); $x}));
1554
                  fn main() -> i32 {user!(z)}",
1555 1556
                 vec!(vec!(0)), false)
                );
1557 1558
        for (idx,s) in tests.iter().enumerate() {
            run_renaming_test(s,idx);
1559 1560 1561
        }
    }

1562 1563 1564 1565 1566
    // no longer a fixme #8062: this test exposes a *potential* bug; our system does
    // not behave exactly like MTWT, but a conversation with Matthew Flatt
    // suggests that this can only occur in the presence of local-expand, which
    // we have no plans to support. ... unless it's needed for item hygiene....
    #[ignore]
R
Richo Healey 已提交
1567 1568
    #[test]
    fn issue_8062(){
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
        run_renaming_test(
            &("fn main() {let hrcoo = 19; macro_rules! getx(()=>(hrcoo)); getx!();}",
              vec!(vec!(0)), true), 0)
    }

    // FIXME #6994:
    // 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"
    #[ignore]
R
Richo Healey 已提交
1579 1580
    #[test]
    fn issue_6994(){
1581 1582
        run_renaming_test(
            &("macro_rules! g (($x:ident) =>
1583
              ({macro_rules! f(($y:ident)=>({let $y=3;$x}));f!($x)}));
1584 1585 1586
              fn a(){g!(z)}",
              vec!(vec!(0)),false),
            0)
1587 1588
    }

1589
    // match variable hygiene. Should expand into
1590
    // fn z() {match 8 {x_1 => {match 9 {x_2 | x_2 if x_2 == x_1 => x_2 + x_1}}}}
R
Richo Healey 已提交
1591 1592
    #[test]
    fn issue_9384(){
1593
        run_renaming_test(
1594
            &("macro_rules! bad_macro (($ex:expr) => ({match 9 {x | x if x == $ex => x + $ex}}));
1595
              fn z() {match 8 {x => bad_macro!(x)}}",
1596
              // NB: the third "binding" is the repeat of the second one.
1597
              vec!(vec!(1,3),vec!(0,2),vec!(0,2)),
1598 1599
              true),
            0)
1600 1601
    }

1602
    // interpolated nodes weren't getting labeled.
1603 1604
    // should expand into
    // fn main(){let g1_1 = 13; g1_1}}
R
Richo Healey 已提交
1605 1606
    #[test]
    fn pat_expand_issue_15221(){
1607
        run_renaming_test(
1608 1609
            &("macro_rules! inner ( ($e:pat ) => ($e));
              macro_rules! outer ( ($e:pat ) => (inner!($e)));
1610 1611 1612 1613 1614 1615
              fn main() { let outer!(g) = 13; g;}",
              vec!(vec!(0)),
              true),
            0)
    }

1616
    // create a really evil test case where a $x appears inside a binding of $x
J
Joseph Crail 已提交
1617
    // but *shouldn't* bind because it was inserted by a different macro....
1618 1619
    // can't write this test case until we have macro-generating macros.

1620
    // method arg hygiene
1621
    // method expands to fn get_x(&self_0, x_1: i32) {self_0 + self_2 + x_3 + x_1}
R
Richo Healey 已提交
1622 1623
    #[test]
    fn method_arg_hygiene(){
1624
        run_renaming_test(
1625 1626
            &("macro_rules! inject_x (()=>(x));
              macro_rules! inject_self (()=>(self));
1627
              struct A;
1628
              impl A{fn get_x(&self, x: i32) {self + inject_self!() + inject_x!() + x;} }",
1629 1630 1631 1632 1633
              vec!(vec!(0),vec!(3)),
              true),
            0)
    }

J
John Clements 已提交
1634 1635
    // ooh, got another bite?
    // expands to struct A; impl A {fn thingy(&self_1) {self_1;}}
R
Richo Healey 已提交
1636 1637
    #[test]
    fn method_arg_hygiene_2(){
J
John Clements 已提交
1638 1639 1640
        run_renaming_test(
            &("struct A;
              macro_rules! add_method (($T:ty) =>
1641 1642
              (impl $T {  fn thingy(&self) {self;} }));
              add_method!(A);",
J
John Clements 已提交
1643 1644 1645 1646 1647
              vec!(vec!(0)),
              true),
            0)
    }

J
John Clements 已提交
1648
    // item fn hygiene
1649
    // expands to fn q(x_1: i32){fn g(x_2: i32){x_2 + x_1};}
R
Richo Healey 已提交
1650 1651
    #[test]
    fn issue_9383(){
1652
        run_renaming_test(
1653 1654
            &("macro_rules! bad_macro (($ex:expr) => (fn g(x: i32){ x + $ex }));
              fn q(x: i32) { bad_macro!(x); }",
1655
              vec!(vec!(1),vec!(0)),true),
1656
            0)
1657
    }
1658

1659
    // closure arg hygiene (ExprClosure)
1660
    // expands to fn f(){(|x_1 : i32| {(x_2 + x_1)})(3);}
R
Richo Healey 已提交
1661 1662
    #[test]
    fn closure_arg_hygiene(){
1663
        run_renaming_test(
1664
            &("macro_rules! inject_x (()=>(x));
1665
            fn f(){(|x : i32| {(inject_x!() + x)})(3);}",
1666 1667 1668 1669 1670
              vec!(vec!(1)),
              true),
            0)
    }

1671
    // macro_rules in method position. Sadly, unimplemented.
R
Richo Healey 已提交
1672 1673
    #[test]
    fn macro_in_method_posn(){
1674
        expand_crate_str(
1675
            "macro_rules! my_method (() => (fn thirteen(&self) -> i32 {13}));
1676
            struct A;
1677
            impl A{ my_method!(); }
1678 1679 1680
            fn f(){A.thirteen;}".to_string());
    }

1681 1682
    // another nested macro
    // expands to impl Entries {fn size_hint(&self_1) {self_1;}
R
Richo Healey 已提交
1683 1684
    #[test]
    fn item_macro_workaround(){
1685 1686 1687 1688
        run_renaming_test(
            &("macro_rules! item { ($i:item) => {$i}}
              struct Entries;
              macro_rules! iterator_impl {
1689
              () => { item!( impl Entries { fn size_hint(&self) { self;}});}}
1690 1691 1692 1693 1694
              iterator_impl! { }",
              vec!(vec!(0)), true),
            0)
    }

J
John Clements 已提交
1695
    // run one of the renaming tests
P
Paul Collier 已提交
1696
    fn run_renaming_test(t: &RenamingTest, test_idx: usize) {
J
John Clements 已提交
1697
        let invalid_name = token::special_idents::invalid.name;
J
John Clements 已提交
1698
        let (teststr, bound_connections, bound_ident_check) = match *t {
1699
            (ref str,ref conns, bic) => (str.to_string(), conns.clone(), bic)
1700
        };
1701
        let cr = expand_crate_str(teststr.to_string());
1702 1703
        let bindings = crate_bindings(&cr);
        let varrefs = crate_varrefs(&cr);
1704

1705 1706 1707
        // must be one check clause for each binding:
        assert_eq!(bindings.len(),bound_connections.len());
        for (binding_idx,shouldmatch) in bound_connections.iter().enumerate() {
1708 1709
            let binding_name = mtwt::resolve(bindings[binding_idx]);
            let binding_marks = mtwt::marksof(bindings[binding_idx].ctxt, invalid_name);
1710
            // shouldmatch can't name varrefs that don't exist:
1711
            assert!((shouldmatch.is_empty()) ||
1712 1713
                    (varrefs.len() > *shouldmatch.iter().max().unwrap()));
            for (idx,varref) in varrefs.iter().enumerate() {
1714
                let print_hygiene_debug_info = || {
J
John Clements 已提交
1715 1716 1717
                    // good lord, you can't make a path with 0 segments, can you?
                    let final_varref_ident = match varref.segments.last() {
                        Some(pathsegment) => pathsegment.identifier,
S
Steve Klabnik 已提交
1718
                        None => panic!("varref with 0 path segments?")
J
John Clements 已提交
1719 1720 1721 1722 1723
                    };
                    let varref_name = mtwt::resolve(final_varref_ident);
                    let varref_idents : Vec<ast::Ident>
                        = varref.segments.iter().map(|s| s.identifier)
                        .collect();
A
Alex Crichton 已提交
1724
                    println!("varref #{}: {:?}, resolves to {}",idx, varref_idents, varref_name);
1725
                    println!("varref's first segment's string: \"{}\"", final_varref_ident);
J
John Clements 已提交
1726
                    println!("binding #{}: {}, resolves to {}",
1727
                             binding_idx, bindings[binding_idx], binding_name);
J
John Clements 已提交
1728 1729
                    mtwt::with_sctable(|x| mtwt::display_sctable(x));
                };
1730 1731
                if shouldmatch.contains(&idx) {
                    // it should be a path of length 1, and it should
J
John Clements 已提交
1732
                    // be free-identifier=? or bound-identifier=? to the given binding
1733
                    assert_eq!(varref.segments.len(),1);
1734 1735
                    let varref_name = mtwt::resolve(varref.segments[0].identifier);
                    let varref_marks = mtwt::marksof(varref.segments[0]
1736 1737 1738
                                                           .identifier
                                                           .ctxt,
                                                     invalid_name);
1739
                    if !(varref_name==binding_name) {
1740
                        println!("uh oh, should match but doesn't:");
J
John Clements 已提交
1741
                        print_hygiene_debug_info();
1742 1743
                    }
                    assert_eq!(varref_name,binding_name);
1744
                    if bound_ident_check {
J
John Clements 已提交
1745 1746
                        // we're checking bound-identifier=?, and the marks
                        // should be the same, too:
J
John Clements 已提交
1747 1748
                        assert_eq!(varref_marks,binding_marks.clone());
                    }
1749
                } else {
1750
                    let varref_name = mtwt::resolve(varref.segments[0].identifier);
1751
                    let fail = (varref.segments.len() == 1)
1752
                        && (varref_name == binding_name);
1753
                    // temp debugging:
1754
                    if fail {
1755 1756 1757 1758
                        println!("failure on test {}",test_idx);
                        println!("text of test case: \"{}\"", teststr);
                        println!("");
                        println!("uh oh, matches but shouldn't:");
J
John Clements 已提交
1759
                        print_hygiene_debug_info();
1760 1761 1762 1763
                    }
                    assert!(!fail);
                }
            }
1764 1765
        }
    }
1766

R
Richo Healey 已提交
1767 1768
    #[test]
    fn fmt_in_macro_used_inside_module_macro() {
1769 1770 1771
        let crate_str = "macro_rules! fmt_wrap(($b:expr)=>($b.to_string()));
macro_rules! foo_module (() => (mod generated { fn a() { let xx = 147; fmt_wrap!(xx);}}));
foo_module!();
1772
".to_string();
J
John Clements 已提交
1773 1774
        let cr = expand_crate_str(crate_str);
        // find the xx binding
1775
        let bindings = crate_bindings(&cr);
1776
        let cxbinds: Vec<&ast::Ident> =
1777
            bindings.iter().filter(|b| b.name.as_str() == "xx").collect();
1778
        let cxbinds: &[&ast::Ident] = &cxbinds[..];
1779 1780
        let cxbind = match (cxbinds.len(), cxbinds.get(0)) {
            (1, Some(b)) => *b,
S
Steve Klabnik 已提交
1781
            _ => panic!("expected just one binding for ext_cx")
J
John Clements 已提交
1782
        };
1783
        let resolved_binding = mtwt::resolve(*cxbind);
1784
        let varrefs = crate_varrefs(&cr);
1785

J
John Clements 已提交
1786
        // the xx binding should bind all of the xx varrefs:
1787
        for (idx,v) in varrefs.iter().filter(|p| {
1788
            p.segments.len() == 1
1789
            && p.segments[0].identifier.name.as_str() == "xx"
1790
        }).enumerate() {
1791
            if mtwt::resolve(v.segments[0].identifier) != resolved_binding {
1792
                println!("uh oh, xx binding didn't match xx varref:");
L
Luqman Aden 已提交
1793 1794 1795
                println!("this is xx varref \\# {}", idx);
                println!("binding: {}", cxbind);
                println!("resolves to: {}", resolved_binding);
1796
                println!("varref: {}", v.segments[0].identifier);
L
Luqman Aden 已提交
1797
                println!("resolves to: {}",
1798
                         mtwt::resolve(v.segments[0].identifier));
1799
                mtwt::with_sctable(|x| mtwt::display_sctable(x));
J
John Clements 已提交
1800
            }
1801
            assert_eq!(mtwt::resolve(v.segments[0].identifier),
1802
                       resolved_binding);
J
John Clements 已提交
1803 1804 1805
        };
    }

J
John Clements 已提交
1806 1807
    #[test]
    fn pat_idents(){
1808
        let pat = string_to_pat(
1809
            "(a,Foo{x:c @ (b,9),y:Bar(4,d)})".to_string());
S
Seo Sanghyeon 已提交
1810
        let idents = pattern_bindings(&pat);
1811
        assert_eq!(idents, strs_to_idents(vec!("a","c","b","d")));
J
John Clements 已提交
1812
    }
J
John Clements 已提交
1813

1814 1815 1816
    // test the list of identifier patterns gathered by the visitor. Note that
    // 'None' is listed as an identifier pattern because we don't yet know that
    // it's the name of a 0-ary variant, and that 'i' appears twice in succession.
1817
    #[test]
1818
    fn crate_bindings_test(){
1819
        let the_crate = string_to_crate("fn main (a: i32) -> i32 {|b| {
1820
        match 34 {None => 3, Some(i) | i => j, Foo{k:z,l:y} => \"banana\"}} }".to_string());
1821 1822
        let idents = crate_bindings(&the_crate);
        assert_eq!(idents, strs_to_idents(vec!("a","b","None","i","i","z","y")));
1823 1824
    }

1825 1826 1827
    // test the IdentRenamer directly
    #[test]
    fn ident_renamer_test () {
1828
        let the_crate = string_to_crate("fn f(x: i32){let x = x; x}".to_string());
1829 1830
        let f_ident = token::str_to_ident("f");
        let x_ident = token::str_to_ident("x");
1831
        let int_ident = token::str_to_ident("i32");
C
Corey Richardson 已提交
1832
        let renames = vec!((x_ident,Name(16)));
1833 1834 1835 1836
        let mut renamer = IdentRenamer{renames: &renames};
        let renamed_crate = renamer.fold_crate(the_crate);
        let idents = crate_idents(&renamed_crate);
        let resolved : Vec<ast::Name> = idents.iter().map(|id| mtwt::resolve(*id)).collect();
1837
        assert_eq!(resolved, [f_ident.name,Name(16),int_ident.name,Name(16),Name(16),Name(16)]);
1838 1839 1840 1841 1842
    }

    // test the PatIdentRenamer; only PatIdents get renamed
    #[test]
    fn pat_ident_renamer_test () {
1843
        let the_crate = string_to_crate("fn f(x: i32){let x = x; x}".to_string());
1844 1845
        let f_ident = token::str_to_ident("f");
        let x_ident = token::str_to_ident("x");
1846
        let int_ident = token::str_to_ident("i32");
C
Corey Richardson 已提交
1847
        let renames = vec!((x_ident,Name(16)));
1848 1849 1850 1851 1852
        let mut renamer = PatIdentRenamer{renames: &renames};
        let renamed_crate = renamer.fold_crate(the_crate);
        let idents = crate_idents(&renamed_crate);
        let resolved : Vec<ast::Name> = idents.iter().map(|id| mtwt::resolve(*id)).collect();
        let x_name = x_ident.name;
1853
        assert_eq!(resolved, [f_ident.name,Name(16),int_ident.name,Name(16),x_name,x_name]);
1854
    }
J
John Clements 已提交
1855
}