]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/fold.rs
refactor: use shorthand fields
[rust.git] / src / libsyntax / fold.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! A Folder represents an AST->AST fold; it accepts an AST piece,
12 //! and returns a piece of the same type. So, for instance, macro
13 //! expansion is a Folder that walks over an AST and produces another
14 //! AST.
15 //!
16 //! Note: using a Folder (other than the MacroExpander Folder) on
17 //! an AST before macro expansion is probably a bad idea. For instance,
18 //! a folder renaming item names in a module will miss all of those
19 //! that are created by the expansion of a macro.
20
21 use ast::*;
22 use ast;
23 use syntax_pos::Span;
24 use source_map::{Spanned, respan};
25 use parse::token::{self, Token};
26 use ptr::P;
27 use smallvec::{Array, SmallVec};
28 use symbol::keywords;
29 use ThinVec;
30 use tokenstream::*;
31 use util::move_map::MoveMap;
32
33 use rustc_data_structures::sync::Lrc;
34
35 pub trait ExpectOne<A: Array> {
36     fn expect_one(self, err: &'static str) -> A::Item;
37 }
38
39 impl<A: Array> ExpectOne<A> for SmallVec<A> {
40     fn expect_one(self, err: &'static str) -> A::Item {
41         assert!(self.len() == 1, err);
42         self.into_iter().next().unwrap()
43     }
44 }
45
46 pub trait Folder : Sized {
47     // Any additions to this trait should happen in form
48     // of a call to a public `noop_*` function that only calls
49     // out to the folder again, not other `noop_*` functions.
50     //
51     // This is a necessary API workaround to the problem of not
52     // being able to call out to the super default method
53     // in an overridden default method.
54
55     fn fold_crate(&mut self, c: Crate) -> Crate {
56         noop_fold_crate(c, self)
57     }
58
59     fn fold_meta_items(&mut self, meta_items: Vec<MetaItem>) -> Vec<MetaItem> {
60         noop_fold_meta_items(meta_items, self)
61     }
62
63     fn fold_meta_list_item(&mut self, list_item: NestedMetaItem) -> NestedMetaItem {
64         noop_fold_meta_list_item(list_item, self)
65     }
66
67     fn fold_meta_item(&mut self, meta_item: MetaItem) -> MetaItem {
68         noop_fold_meta_item(meta_item, self)
69     }
70
71     fn fold_use_tree(&mut self, use_tree: UseTree) -> UseTree {
72         noop_fold_use_tree(use_tree, self)
73     }
74
75     fn fold_foreign_item(&mut self, ni: ForeignItem) -> SmallVec<[ForeignItem; 1]> {
76         noop_fold_foreign_item(ni, self)
77     }
78
79     fn fold_foreign_item_simple(&mut self, ni: ForeignItem) -> ForeignItem {
80         noop_fold_foreign_item_simple(ni, self)
81     }
82
83     fn fold_item(&mut self, i: P<Item>) -> SmallVec<[P<Item>; 1]> {
84         noop_fold_item(i, self)
85     }
86
87     fn fold_item_simple(&mut self, i: Item) -> Item {
88         noop_fold_item_simple(i, self)
89     }
90
91     fn fold_fn_header(&mut self, header: FnHeader) -> FnHeader {
92         noop_fold_fn_header(header, self)
93     }
94
95     fn fold_struct_field(&mut self, sf: StructField) -> StructField {
96         noop_fold_struct_field(sf, self)
97     }
98
99     fn fold_item_kind(&mut self, i: ItemKind) -> ItemKind {
100         noop_fold_item_kind(i, self)
101     }
102
103     fn fold_trait_item(&mut self, i: TraitItem) -> SmallVec<[TraitItem; 1]> {
104         noop_fold_trait_item(i, self)
105     }
106
107     fn fold_impl_item(&mut self, i: ImplItem) -> SmallVec<[ImplItem; 1]> {
108         noop_fold_impl_item(i, self)
109     }
110
111     fn fold_fn_decl(&mut self, d: P<FnDecl>) -> P<FnDecl> {
112         noop_fold_fn_decl(d, self)
113     }
114
115     fn fold_asyncness(&mut self, a: IsAsync) -> IsAsync {
116         noop_fold_asyncness(a, self)
117     }
118
119     fn fold_block(&mut self, b: P<Block>) -> P<Block> {
120         noop_fold_block(b, self)
121     }
122
123     fn fold_stmt(&mut self, s: Stmt) -> SmallVec<[Stmt; 1]> {
124         noop_fold_stmt(s, self)
125     }
126
127     fn fold_arm(&mut self, a: Arm) -> Arm {
128         noop_fold_arm(a, self)
129     }
130
131     fn fold_guard(&mut self, g: Guard) -> Guard {
132         noop_fold_guard(g, self)
133     }
134
135     fn fold_pat(&mut self, p: P<Pat>) -> P<Pat> {
136         noop_fold_pat(p, self)
137     }
138
139     fn fold_anon_const(&mut self, c: AnonConst) -> AnonConst {
140         noop_fold_anon_const(c, self)
141     }
142
143     fn fold_expr(&mut self, e: P<Expr>) -> P<Expr> {
144         e.map(|e| noop_fold_expr(e, self))
145     }
146
147     fn fold_range_end(&mut self, re: RangeEnd) -> RangeEnd {
148         noop_fold_range_end(re, self)
149     }
150
151     fn fold_opt_expr(&mut self, e: P<Expr>) -> Option<P<Expr>> {
152         noop_fold_opt_expr(e, self)
153     }
154
155     fn fold_exprs(&mut self, es: Vec<P<Expr>>) -> Vec<P<Expr>> {
156         noop_fold_exprs(es, self)
157     }
158
159     fn fold_generic_arg(&mut self, arg: GenericArg) -> GenericArg {
160         match arg {
161             GenericArg::Lifetime(lt) => GenericArg::Lifetime(self.fold_lifetime(lt)),
162             GenericArg::Type(ty) => GenericArg::Type(self.fold_ty(ty)),
163         }
164     }
165
166     fn fold_ty(&mut self, t: P<Ty>) -> P<Ty> {
167         noop_fold_ty(t, self)
168     }
169
170     fn fold_lifetime(&mut self, l: Lifetime) -> Lifetime {
171         noop_fold_lifetime(l, self)
172     }
173
174     fn fold_ty_binding(&mut self, t: TypeBinding) -> TypeBinding {
175         noop_fold_ty_binding(t, self)
176     }
177
178     fn fold_mod(&mut self, m: Mod) -> Mod {
179         noop_fold_mod(m, self)
180     }
181
182     fn fold_foreign_mod(&mut self, nm: ForeignMod) -> ForeignMod {
183         noop_fold_foreign_mod(nm, self)
184     }
185
186     fn fold_global_asm(&mut self, ga: P<GlobalAsm>) -> P<GlobalAsm> {
187         noop_fold_global_asm(ga, self)
188     }
189
190     fn fold_variant(&mut self, v: Variant) -> Variant {
191         noop_fold_variant(v, self)
192     }
193
194     fn fold_ident(&mut self, i: Ident) -> Ident {
195         noop_fold_ident(i, self)
196     }
197
198     fn fold_usize(&mut self, i: usize) -> usize {
199         noop_fold_usize(i, self)
200     }
201
202     fn fold_path(&mut self, p: Path) -> Path {
203         noop_fold_path(p, self)
204     }
205
206     fn fold_qpath(&mut self, qs: Option<QSelf>, p: Path) -> (Option<QSelf>, Path) {
207         noop_fold_qpath(qs, p, self)
208     }
209
210     fn fold_generic_args(&mut self, p: GenericArgs) -> GenericArgs {
211         noop_fold_generic_args(p, self)
212     }
213
214     fn fold_angle_bracketed_parameter_data(&mut self, p: AngleBracketedArgs)
215                                            -> AngleBracketedArgs
216     {
217         noop_fold_angle_bracketed_parameter_data(p, self)
218     }
219
220     fn fold_parenthesized_parameter_data(&mut self, p: ParenthesisedArgs)
221                                          -> ParenthesisedArgs
222     {
223         noop_fold_parenthesized_parameter_data(p, self)
224     }
225
226     fn fold_local(&mut self, l: P<Local>) -> P<Local> {
227         noop_fold_local(l, self)
228     }
229
230     fn fold_mac(&mut self, _mac: Mac) -> Mac {
231         panic!("fold_mac disabled by default");
232         // NB: see note about macros above.
233         // if you really want a folder that
234         // works on macros, use this
235         // definition in your trait impl:
236         // fold::noop_fold_mac(_mac, self)
237     }
238
239     fn fold_macro_def(&mut self, def: MacroDef) -> MacroDef {
240         noop_fold_macro_def(def, self)
241     }
242
243     fn fold_label(&mut self, label: Label) -> Label {
244         noop_fold_label(label, self)
245     }
246
247     fn fold_attribute(&mut self, at: Attribute) -> Option<Attribute> {
248         noop_fold_attribute(at, self)
249     }
250
251     fn fold_arg(&mut self, a: Arg) -> Arg {
252         noop_fold_arg(a, self)
253     }
254
255     fn fold_generics(&mut self, generics: Generics) -> Generics {
256         noop_fold_generics(generics, self)
257     }
258
259     fn fold_trait_ref(&mut self, p: TraitRef) -> TraitRef {
260         noop_fold_trait_ref(p, self)
261     }
262
263     fn fold_poly_trait_ref(&mut self, p: PolyTraitRef) -> PolyTraitRef {
264         noop_fold_poly_trait_ref(p, self)
265     }
266
267     fn fold_variant_data(&mut self, vdata: VariantData) -> VariantData {
268         noop_fold_variant_data(vdata, self)
269     }
270
271     fn fold_generic_param(&mut self, param: GenericParam) -> GenericParam {
272         noop_fold_generic_param(param, self)
273     }
274
275     fn fold_generic_params(&mut self, params: Vec<GenericParam>) -> Vec<GenericParam> {
276         noop_fold_generic_params(params, self)
277     }
278
279     fn fold_tt(&mut self, tt: TokenTree) -> TokenTree {
280         noop_fold_tt(tt, self)
281     }
282
283     fn fold_tts(&mut self, tts: TokenStream) -> TokenStream {
284         noop_fold_tts(tts, self)
285     }
286
287     fn fold_token(&mut self, t: token::Token) -> token::Token {
288         noop_fold_token(t, self)
289     }
290
291     fn fold_interpolated(&mut self, nt: token::Nonterminal) -> token::Nonterminal {
292         noop_fold_interpolated(nt, self)
293     }
294
295     fn fold_opt_bounds(&mut self, b: Option<GenericBounds>) -> Option<GenericBounds> {
296         noop_fold_opt_bounds(b, self)
297     }
298
299     fn fold_bounds(&mut self, b: GenericBounds) -> GenericBounds {
300         noop_fold_bounds(b, self)
301     }
302
303     fn fold_param_bound(&mut self, tpb: GenericBound) -> GenericBound {
304         noop_fold_param_bound(tpb, self)
305     }
306
307     fn fold_mt(&mut self, mt: MutTy) -> MutTy {
308         noop_fold_mt(mt, self)
309     }
310
311     fn fold_field(&mut self, field: Field) -> Field {
312         noop_fold_field(field, self)
313     }
314
315     fn fold_where_clause(&mut self, where_clause: WhereClause)
316                          -> WhereClause {
317         noop_fold_where_clause(where_clause, self)
318     }
319
320     fn fold_where_predicate(&mut self, where_predicate: WherePredicate)
321                             -> WherePredicate {
322         noop_fold_where_predicate(where_predicate, self)
323     }
324
325     fn fold_vis(&mut self, vis: Visibility) -> Visibility {
326         noop_fold_vis(vis, self)
327     }
328
329     fn new_id(&mut self, i: NodeId) -> NodeId {
330         i
331     }
332
333     fn new_span(&mut self, sp: Span) -> Span {
334         sp
335     }
336 }
337
338 pub fn noop_fold_meta_items<T: Folder>(meta_items: Vec<MetaItem>, fld: &mut T) -> Vec<MetaItem> {
339     meta_items.move_map(|x| fld.fold_meta_item(x))
340 }
341
342 pub fn noop_fold_use_tree<T: Folder>(use_tree: UseTree, fld: &mut T) -> UseTree {
343     UseTree {
344         span: fld.new_span(use_tree.span),
345         prefix: fld.fold_path(use_tree.prefix),
346         kind: match use_tree.kind {
347             UseTreeKind::Simple(rename, id1, id2) =>
348                 UseTreeKind::Simple(rename.map(|ident| fld.fold_ident(ident)),
349                                     fld.new_id(id1), fld.new_id(id2)),
350             UseTreeKind::Glob => UseTreeKind::Glob,
351             UseTreeKind::Nested(items) => UseTreeKind::Nested(items.move_map(|(tree, id)| {
352                 (fld.fold_use_tree(tree), fld.new_id(id))
353             })),
354         },
355     }
356 }
357
358 pub fn fold_attrs<T: Folder>(attrs: Vec<Attribute>, fld: &mut T) -> Vec<Attribute> {
359     attrs.move_flat_map(|x| fld.fold_attribute(x))
360 }
361
362 pub fn fold_thin_attrs<T: Folder>(attrs: ThinVec<Attribute>, fld: &mut T) -> ThinVec<Attribute> {
363     fold_attrs(attrs.into(), fld).into()
364 }
365
366 pub fn noop_fold_arm<T: Folder>(Arm {attrs, pats, guard, body}: Arm,
367     fld: &mut T) -> Arm {
368     Arm {
369         attrs: fold_attrs(attrs, fld),
370         pats: pats.move_map(|x| fld.fold_pat(x)),
371         guard: guard.map(|x| fld.fold_guard(x)),
372         body: fld.fold_expr(body),
373     }
374 }
375
376 pub fn noop_fold_guard<T: Folder>(g: Guard, fld: &mut T) -> Guard {
377     match g {
378         Guard::If(e) => Guard::If(fld.fold_expr(e)),
379     }
380 }
381
382 pub fn noop_fold_ty_binding<T: Folder>(b: TypeBinding, fld: &mut T) -> TypeBinding {
383     TypeBinding {
384         id: fld.new_id(b.id),
385         ident: fld.fold_ident(b.ident),
386         ty: fld.fold_ty(b.ty),
387         span: fld.new_span(b.span),
388     }
389 }
390
391 pub fn noop_fold_ty<T: Folder>(t: P<Ty>, fld: &mut T) -> P<Ty> {
392     t.map(|Ty {id, node, span}| Ty {
393         id: fld.new_id(id),
394         node: match node {
395             TyKind::Infer | TyKind::ImplicitSelf | TyKind::Err => node,
396             TyKind::Slice(ty) => TyKind::Slice(fld.fold_ty(ty)),
397             TyKind::Ptr(mt) => TyKind::Ptr(fld.fold_mt(mt)),
398             TyKind::Rptr(region, mt) => {
399                 TyKind::Rptr(region.map(|lt| noop_fold_lifetime(lt, fld)), fld.fold_mt(mt))
400             }
401             TyKind::BareFn(f) => {
402                 TyKind::BareFn(f.map(|BareFnTy {generic_params, unsafety, abi, decl}| BareFnTy {
403                     generic_params: fld.fold_generic_params(generic_params),
404                     unsafety,
405                     abi,
406                     decl: fld.fold_fn_decl(decl)
407                 }))
408             }
409             TyKind::Never => node,
410             TyKind::Tup(tys) => TyKind::Tup(tys.move_map(|ty| fld.fold_ty(ty))),
411             TyKind::Paren(ty) => TyKind::Paren(fld.fold_ty(ty)),
412             TyKind::Path(qself, path) => {
413                 let (qself, path) = fld.fold_qpath(qself, path);
414                 TyKind::Path(qself, path)
415             }
416             TyKind::Array(ty, length) => {
417                 TyKind::Array(fld.fold_ty(ty), fld.fold_anon_const(length))
418             }
419             TyKind::Typeof(expr) => {
420                 TyKind::Typeof(fld.fold_anon_const(expr))
421             }
422             TyKind::TraitObject(bounds, syntax) => {
423                 TyKind::TraitObject(bounds.move_map(|b| fld.fold_param_bound(b)), syntax)
424             }
425             TyKind::ImplTrait(id, bounds) => {
426                 TyKind::ImplTrait(fld.new_id(id), bounds.move_map(|b| fld.fold_param_bound(b)))
427             }
428             TyKind::Mac(mac) => {
429                 TyKind::Mac(fld.fold_mac(mac))
430             }
431         },
432         span: fld.new_span(span)
433     })
434 }
435
436 pub fn noop_fold_foreign_mod<T: Folder>(ForeignMod {abi, items}: ForeignMod,
437                                         fld: &mut T) -> ForeignMod {
438     ForeignMod {
439         abi,
440         items: items.move_flat_map(|x| fld.fold_foreign_item(x)),
441     }
442 }
443
444 pub fn noop_fold_global_asm<T: Folder>(ga: P<GlobalAsm>,
445                                        _: &mut T) -> P<GlobalAsm> {
446     ga
447 }
448
449 pub fn noop_fold_variant<T: Folder>(v: Variant, fld: &mut T) -> Variant {
450     Spanned {
451         node: Variant_ {
452             ident: fld.fold_ident(v.node.ident),
453             attrs: fold_attrs(v.node.attrs, fld),
454             data: fld.fold_variant_data(v.node.data),
455             disr_expr: v.node.disr_expr.map(|e| fld.fold_anon_const(e)),
456         },
457         span: fld.new_span(v.span),
458     }
459 }
460
461 pub fn noop_fold_ident<T: Folder>(ident: Ident, fld: &mut T) -> Ident {
462     Ident::new(ident.name, fld.new_span(ident.span))
463 }
464
465 pub fn noop_fold_usize<T: Folder>(i: usize, _: &mut T) -> usize {
466     i
467 }
468
469 pub fn noop_fold_path<T: Folder>(Path { segments, span }: Path, fld: &mut T) -> Path {
470     Path {
471         segments: segments.move_map(|PathSegment { ident, args }| PathSegment {
472             ident: fld.fold_ident(ident),
473             args: args.map(|args| args.map(|args| fld.fold_generic_args(args))),
474         }),
475         span: fld.new_span(span)
476     }
477 }
478
479 pub fn noop_fold_qpath<T: Folder>(qself: Option<QSelf>,
480                                   path: Path,
481                                   fld: &mut T) -> (Option<QSelf>, Path) {
482     let qself = qself.map(|QSelf { ty, path_span, position }| {
483         QSelf {
484             ty: fld.fold_ty(ty),
485             path_span: fld.new_span(path_span),
486             position,
487         }
488     });
489     (qself, fld.fold_path(path))
490 }
491
492 pub fn noop_fold_generic_args<T: Folder>(generic_args: GenericArgs, fld: &mut T) -> GenericArgs
493 {
494     match generic_args {
495         GenericArgs::AngleBracketed(data) => {
496             GenericArgs::AngleBracketed(fld.fold_angle_bracketed_parameter_data(data))
497         }
498         GenericArgs::Parenthesized(data) => {
499             GenericArgs::Parenthesized(fld.fold_parenthesized_parameter_data(data))
500         }
501     }
502 }
503
504 pub fn noop_fold_angle_bracketed_parameter_data<T: Folder>(data: AngleBracketedArgs,
505                                                            fld: &mut T)
506                                                            -> AngleBracketedArgs
507 {
508     let AngleBracketedArgs { args, bindings, span } = data;
509     AngleBracketedArgs {
510         args: args.move_map(|arg| fld.fold_generic_arg(arg)),
511         bindings: bindings.move_map(|b| fld.fold_ty_binding(b)),
512         span: fld.new_span(span)
513     }
514 }
515
516 pub fn noop_fold_parenthesized_parameter_data<T: Folder>(data: ParenthesisedArgs,
517                                                          fld: &mut T)
518                                                          -> ParenthesisedArgs
519 {
520     let ParenthesisedArgs { inputs, output, span } = data;
521     ParenthesisedArgs {
522         inputs: inputs.move_map(|ty| fld.fold_ty(ty)),
523         output: output.map(|ty| fld.fold_ty(ty)),
524         span: fld.new_span(span)
525     }
526 }
527
528 pub fn noop_fold_local<T: Folder>(l: P<Local>, fld: &mut T) -> P<Local> {
529     l.map(|Local {id, pat, ty, init, span, attrs}| Local {
530         id: fld.new_id(id),
531         pat: fld.fold_pat(pat),
532         ty: ty.map(|t| fld.fold_ty(t)),
533         init: init.map(|e| fld.fold_expr(e)),
534         span: fld.new_span(span),
535         attrs: fold_attrs(attrs.into(), fld).into(),
536     })
537 }
538
539 pub fn noop_fold_attribute<T: Folder>(attr: Attribute, fld: &mut T) -> Option<Attribute> {
540     Some(Attribute {
541         id: attr.id,
542         style: attr.style,
543         path: fld.fold_path(attr.path),
544         tokens: fld.fold_tts(attr.tokens),
545         is_sugared_doc: attr.is_sugared_doc,
546         span: fld.new_span(attr.span),
547     })
548 }
549
550 pub fn noop_fold_mac<T: Folder>(Spanned {node, span}: Mac, fld: &mut T) -> Mac {
551     Spanned {
552         node: Mac_ {
553             tts: fld.fold_tts(node.stream()).into(),
554             path: fld.fold_path(node.path),
555             delim: node.delim,
556         },
557         span: fld.new_span(span)
558     }
559 }
560
561 pub fn noop_fold_macro_def<T: Folder>(def: MacroDef, fld: &mut T) -> MacroDef {
562     MacroDef {
563         tokens: fld.fold_tts(def.tokens.into()).into(),
564         legacy: def.legacy,
565     }
566 }
567
568 pub fn noop_fold_meta_list_item<T: Folder>(li: NestedMetaItem, fld: &mut T)
569     -> NestedMetaItem {
570     Spanned {
571         node: match li.node {
572             NestedMetaItemKind::MetaItem(mi) =>  {
573                 NestedMetaItemKind::MetaItem(fld.fold_meta_item(mi))
574             },
575             NestedMetaItemKind::Literal(lit) => NestedMetaItemKind::Literal(lit)
576         },
577         span: fld.new_span(li.span)
578     }
579 }
580
581 pub fn noop_fold_meta_item<T: Folder>(mi: MetaItem, fld: &mut T) -> MetaItem {
582     MetaItem {
583         ident: mi.ident,
584         node: match mi.node {
585             MetaItemKind::Word => MetaItemKind::Word,
586             MetaItemKind::List(mis) => {
587                 MetaItemKind::List(mis.move_map(|e| fld.fold_meta_list_item(e)))
588             },
589             MetaItemKind::NameValue(s) => MetaItemKind::NameValue(s),
590         },
591         span: fld.new_span(mi.span)
592     }
593 }
594
595 pub fn noop_fold_arg<T: Folder>(Arg {id, pat, ty}: Arg, fld: &mut T) -> Arg {
596     Arg {
597         id: fld.new_id(id),
598         pat: fld.fold_pat(pat),
599         ty: fld.fold_ty(ty)
600     }
601 }
602
603 pub fn noop_fold_tt<T: Folder>(tt: TokenTree, fld: &mut T) -> TokenTree {
604     match tt {
605         TokenTree::Token(span, tok) =>
606             TokenTree::Token(fld.new_span(span), fld.fold_token(tok)),
607         TokenTree::Delimited(span, delimed) => TokenTree::Delimited(
608             DelimSpan::from_pair(fld.new_span(span.open), fld.new_span(span.close)),
609             Delimited {
610                 tts: fld.fold_tts(delimed.stream()).into(),
611                 delim: delimed.delim,
612             }
613         ),
614     }
615 }
616
617 pub fn noop_fold_tts<T: Folder>(tts: TokenStream, fld: &mut T) -> TokenStream {
618     tts.map(|tt| fld.fold_tt(tt))
619 }
620
621 // apply ident folder if it's an ident, apply other folds to interpolated nodes
622 pub fn noop_fold_token<T: Folder>(t: token::Token, fld: &mut T) -> token::Token {
623     match t {
624         token::Ident(id, is_raw) => token::Ident(fld.fold_ident(id), is_raw),
625         token::Lifetime(id) => token::Lifetime(fld.fold_ident(id)),
626         token::Interpolated(nt) => {
627             let nt = match Lrc::try_unwrap(nt) {
628                 Ok(nt) => nt,
629                 Err(nt) => (*nt).clone(),
630             };
631             Token::interpolated(fld.fold_interpolated(nt.0))
632         }
633         _ => t
634     }
635 }
636
637 /// apply folder to elements of interpolated nodes
638 //
639 // NB: this can occur only when applying a fold to partially expanded code, where
640 // parsed pieces have gotten implanted ito *other* macro invocations. This is relevant
641 // for macro hygiene, but possibly not elsewhere.
642 //
643 // One problem here occurs because the types for fold_item, fold_stmt, etc. allow the
644 // folder to return *multiple* items; this is a problem for the nodes here, because
645 // they insist on having exactly one piece. One solution would be to mangle the fold
646 // trait to include one-to-many and one-to-one versions of these entry points, but that
647 // would probably confuse a lot of people and help very few. Instead, I'm just going
648 // to put in dynamic checks. I think the performance impact of this will be pretty much
649 // nonexistent. The danger is that someone will apply a fold to a partially expanded
650 // node, and will be confused by the fact that their "fold_item" or "fold_stmt" isn't
651 // getting called on NtItem or NtStmt nodes. Hopefully they'll wind up reading this
652 // comment, and doing something appropriate.
653 //
654 // BTW, design choice: I considered just changing the type of, e.g., NtItem to contain
655 // multiple items, but decided against it when I looked at parse_item_or_view_item and
656 // tried to figure out what I would do with multiple items there....
657 pub fn noop_fold_interpolated<T: Folder>(nt: token::Nonterminal, fld: &mut T)
658                                          -> token::Nonterminal {
659     match nt {
660         token::NtItem(item) =>
661             token::NtItem(fld.fold_item(item)
662                           // this is probably okay, because the only folds likely
663                           // to peek inside interpolated nodes will be renamings/markings,
664                           // which map single items to single items
665                           .expect_one("expected fold to produce exactly one item")),
666         token::NtBlock(block) => token::NtBlock(fld.fold_block(block)),
667         token::NtStmt(stmt) =>
668             token::NtStmt(fld.fold_stmt(stmt)
669                           // this is probably okay, because the only folds likely
670                           // to peek inside interpolated nodes will be renamings/markings,
671                           // which map single items to single items
672                           .expect_one("expected fold to produce exactly one statement")),
673         token::NtPat(pat) => token::NtPat(fld.fold_pat(pat)),
674         token::NtExpr(expr) => token::NtExpr(fld.fold_expr(expr)),
675         token::NtTy(ty) => token::NtTy(fld.fold_ty(ty)),
676         token::NtIdent(ident, is_raw) => token::NtIdent(fld.fold_ident(ident), is_raw),
677         token::NtLifetime(ident) => token::NtLifetime(fld.fold_ident(ident)),
678         token::NtLiteral(expr) => token::NtLiteral(fld.fold_expr(expr)),
679         token::NtMeta(meta) => token::NtMeta(fld.fold_meta_item(meta)),
680         token::NtPath(path) => token::NtPath(fld.fold_path(path)),
681         token::NtTT(tt) => token::NtTT(fld.fold_tt(tt)),
682         token::NtArm(arm) => token::NtArm(fld.fold_arm(arm)),
683         token::NtImplItem(item) =>
684             token::NtImplItem(fld.fold_impl_item(item)
685                               .expect_one("expected fold to produce exactly one item")),
686         token::NtTraitItem(item) =>
687             token::NtTraitItem(fld.fold_trait_item(item)
688                                .expect_one("expected fold to produce exactly one item")),
689         token::NtGenerics(generics) => token::NtGenerics(fld.fold_generics(generics)),
690         token::NtWhereClause(where_clause) =>
691             token::NtWhereClause(fld.fold_where_clause(where_clause)),
692         token::NtArg(arg) => token::NtArg(fld.fold_arg(arg)),
693         token::NtVis(vis) => token::NtVis(fld.fold_vis(vis)),
694         token::NtForeignItem(ni) =>
695             token::NtForeignItem(fld.fold_foreign_item(ni)
696                                  // see reasoning above
697                                  .expect_one("expected fold to produce exactly one item")),
698     }
699 }
700
701 pub fn noop_fold_asyncness<T: Folder>(asyncness: IsAsync, fld: &mut T) -> IsAsync {
702     match asyncness {
703         IsAsync::Async { closure_id, return_impl_trait_id } => IsAsync::Async {
704             closure_id: fld.new_id(closure_id),
705             return_impl_trait_id: fld.new_id(return_impl_trait_id),
706         },
707         IsAsync::NotAsync => IsAsync::NotAsync,
708     }
709 }
710
711 pub fn noop_fold_fn_decl<T: Folder>(decl: P<FnDecl>, fld: &mut T) -> P<FnDecl> {
712     decl.map(|FnDecl {inputs, output, variadic}| FnDecl {
713         inputs: inputs.move_map(|x| fld.fold_arg(x)),
714         output: match output {
715             FunctionRetTy::Ty(ty) => FunctionRetTy::Ty(fld.fold_ty(ty)),
716             FunctionRetTy::Default(span) => FunctionRetTy::Default(fld.new_span(span)),
717         },
718         variadic,
719     })
720 }
721
722 pub fn noop_fold_param_bound<T>(pb: GenericBound, fld: &mut T) -> GenericBound where T: Folder {
723     match pb {
724         GenericBound::Trait(ty, modifier) => {
725             GenericBound::Trait(fld.fold_poly_trait_ref(ty), modifier)
726         }
727         GenericBound::Outlives(lifetime) => {
728             GenericBound::Outlives(noop_fold_lifetime(lifetime, fld))
729         }
730     }
731 }
732
733 pub fn noop_fold_generic_param<T: Folder>(param: GenericParam, fld: &mut T) -> GenericParam {
734     let attrs: Vec<_> = param.attrs.into();
735     GenericParam {
736         ident: fld.fold_ident(param.ident),
737         id: fld.new_id(param.id),
738         attrs: attrs.into_iter()
739                     .flat_map(|x| fld.fold_attribute(x).into_iter())
740                     .collect::<Vec<_>>()
741                     .into(),
742         bounds: param.bounds.move_map(|l| noop_fold_param_bound(l, fld)),
743         kind: match param.kind {
744             GenericParamKind::Lifetime => GenericParamKind::Lifetime,
745             GenericParamKind::Type { default } => GenericParamKind::Type {
746                 default: default.map(|ty| fld.fold_ty(ty))
747             }
748         }
749     }
750 }
751
752 pub fn noop_fold_generic_params<T: Folder>(
753     params: Vec<GenericParam>,
754     fld: &mut T
755 ) -> Vec<GenericParam> {
756     params.move_map(|p| fld.fold_generic_param(p))
757 }
758
759 pub fn noop_fold_label<T: Folder>(label: Label, fld: &mut T) -> Label {
760     Label {
761         ident: fld.fold_ident(label.ident),
762     }
763 }
764
765 fn noop_fold_lifetime<T: Folder>(l: Lifetime, fld: &mut T) -> Lifetime {
766     Lifetime {
767         id: fld.new_id(l.id),
768         ident: fld.fold_ident(l.ident),
769     }
770 }
771
772 pub fn noop_fold_generics<T: Folder>(Generics { params, where_clause, span }: Generics,
773                                      fld: &mut T) -> Generics {
774     Generics {
775         params: fld.fold_generic_params(params),
776         where_clause: fld.fold_where_clause(where_clause),
777         span: fld.new_span(span),
778     }
779 }
780
781 pub fn noop_fold_where_clause<T: Folder>(
782                               WhereClause {id, predicates, span}: WhereClause,
783                               fld: &mut T)
784                               -> WhereClause {
785     WhereClause {
786         id: fld.new_id(id),
787         predicates: predicates.move_map(|predicate| {
788             fld.fold_where_predicate(predicate)
789         }),
790         span,
791     }
792 }
793
794 pub fn noop_fold_where_predicate<T: Folder>(
795                                  pred: WherePredicate,
796                                  fld: &mut T)
797                                  -> WherePredicate {
798     match pred {
799         ast::WherePredicate::BoundPredicate(ast::WhereBoundPredicate{bound_generic_params,
800                                                                      bounded_ty,
801                                                                      bounds,
802                                                                      span}) => {
803             ast::WherePredicate::BoundPredicate(ast::WhereBoundPredicate {
804                 bound_generic_params: fld.fold_generic_params(bound_generic_params),
805                 bounded_ty: fld.fold_ty(bounded_ty),
806                 bounds: bounds.move_map(|x| fld.fold_param_bound(x)),
807                 span: fld.new_span(span)
808             })
809         }
810         ast::WherePredicate::RegionPredicate(ast::WhereRegionPredicate{lifetime,
811                                                                        bounds,
812                                                                        span}) => {
813             ast::WherePredicate::RegionPredicate(ast::WhereRegionPredicate {
814                 span: fld.new_span(span),
815                 lifetime: noop_fold_lifetime(lifetime, fld),
816                 bounds: bounds.move_map(|bound| noop_fold_param_bound(bound, fld))
817             })
818         }
819         ast::WherePredicate::EqPredicate(ast::WhereEqPredicate{id,
820                                                                lhs_ty,
821                                                                rhs_ty,
822                                                                span}) => {
823             ast::WherePredicate::EqPredicate(ast::WhereEqPredicate{
824                 id: fld.new_id(id),
825                 lhs_ty: fld.fold_ty(lhs_ty),
826                 rhs_ty: fld.fold_ty(rhs_ty),
827                 span: fld.new_span(span)
828             })
829         }
830     }
831 }
832
833 pub fn noop_fold_variant_data<T: Folder>(vdata: VariantData, fld: &mut T) -> VariantData {
834     match vdata {
835         ast::VariantData::Struct(fields, id) => {
836             ast::VariantData::Struct(fields.move_map(|f| fld.fold_struct_field(f)),
837                                      fld.new_id(id))
838         }
839         ast::VariantData::Tuple(fields, id) => {
840             ast::VariantData::Tuple(fields.move_map(|f| fld.fold_struct_field(f)),
841                                     fld.new_id(id))
842         }
843         ast::VariantData::Unit(id) => ast::VariantData::Unit(fld.new_id(id))
844     }
845 }
846
847 pub fn noop_fold_trait_ref<T: Folder>(p: TraitRef, fld: &mut T) -> TraitRef {
848     let id = fld.new_id(p.ref_id);
849     let TraitRef {
850         path,
851         ref_id: _,
852     } = p;
853     ast::TraitRef {
854         path: fld.fold_path(path),
855         ref_id: id,
856     }
857 }
858
859 pub fn noop_fold_poly_trait_ref<T: Folder>(p: PolyTraitRef, fld: &mut T) -> PolyTraitRef {
860     ast::PolyTraitRef {
861         bound_generic_params: fld.fold_generic_params(p.bound_generic_params),
862         trait_ref: fld.fold_trait_ref(p.trait_ref),
863         span: fld.new_span(p.span),
864     }
865 }
866
867 pub fn noop_fold_struct_field<T: Folder>(f: StructField, fld: &mut T) -> StructField {
868     StructField {
869         span: fld.new_span(f.span),
870         id: fld.new_id(f.id),
871         ident: f.ident.map(|ident| fld.fold_ident(ident)),
872         vis: fld.fold_vis(f.vis),
873         ty: fld.fold_ty(f.ty),
874         attrs: fold_attrs(f.attrs, fld),
875     }
876 }
877
878 pub fn noop_fold_field<T: Folder>(f: Field, folder: &mut T) -> Field {
879     Field {
880         ident: folder.fold_ident(f.ident),
881         expr: folder.fold_expr(f.expr),
882         span: folder.new_span(f.span),
883         is_shorthand: f.is_shorthand,
884         attrs: fold_thin_attrs(f.attrs, folder),
885     }
886 }
887
888 pub fn noop_fold_mt<T: Folder>(MutTy {ty, mutbl}: MutTy, folder: &mut T) -> MutTy {
889     MutTy {
890         ty: folder.fold_ty(ty),
891         mutbl,
892     }
893 }
894
895 pub fn noop_fold_opt_bounds<T: Folder>(b: Option<GenericBounds>, folder: &mut T)
896                                        -> Option<GenericBounds> {
897     b.map(|bounds| folder.fold_bounds(bounds))
898 }
899
900 fn noop_fold_bounds<T: Folder>(bounds: GenericBounds, folder: &mut T)
901                           -> GenericBounds {
902     bounds.move_map(|bound| folder.fold_param_bound(bound))
903 }
904
905 pub fn noop_fold_block<T: Folder>(b: P<Block>, folder: &mut T) -> P<Block> {
906     b.map(|Block {id, stmts, rules, span, recovered}| Block {
907         id: folder.new_id(id),
908         stmts: stmts.move_flat_map(|s| folder.fold_stmt(s).into_iter()),
909         rules,
910         span: folder.new_span(span),
911         recovered,
912     })
913 }
914
915 pub fn noop_fold_item_kind<T: Folder>(i: ItemKind, folder: &mut T) -> ItemKind {
916     match i {
917         ItemKind::ExternCrate(orig_name) => ItemKind::ExternCrate(orig_name),
918         ItemKind::Use(use_tree) => {
919             ItemKind::Use(use_tree.map(|tree| folder.fold_use_tree(tree)))
920         }
921         ItemKind::Static(t, m, e) => {
922             ItemKind::Static(folder.fold_ty(t), m, folder.fold_expr(e))
923         }
924         ItemKind::Const(t, e) => {
925             ItemKind::Const(folder.fold_ty(t), folder.fold_expr(e))
926         }
927         ItemKind::Fn(decl, header, generics, body) => {
928             let generics = folder.fold_generics(generics);
929             let header = folder.fold_fn_header(header);
930             let decl = folder.fold_fn_decl(decl);
931             let body = folder.fold_block(body);
932             ItemKind::Fn(decl, header, generics, body)
933         }
934         ItemKind::Mod(m) => ItemKind::Mod(folder.fold_mod(m)),
935         ItemKind::ForeignMod(nm) => ItemKind::ForeignMod(folder.fold_foreign_mod(nm)),
936         ItemKind::GlobalAsm(ga) => ItemKind::GlobalAsm(folder.fold_global_asm(ga)),
937         ItemKind::Ty(t, generics) => {
938             ItemKind::Ty(folder.fold_ty(t), folder.fold_generics(generics))
939         }
940         ItemKind::Existential(bounds, generics) => ItemKind::Existential(
941             folder.fold_bounds(bounds),
942             folder.fold_generics(generics),
943         ),
944         ItemKind::Enum(enum_definition, generics) => {
945             let generics = folder.fold_generics(generics);
946             let variants = enum_definition.variants.move_map(|x| folder.fold_variant(x));
947             ItemKind::Enum(ast::EnumDef { variants }, generics)
948         }
949         ItemKind::Struct(struct_def, generics) => {
950             let generics = folder.fold_generics(generics);
951             ItemKind::Struct(folder.fold_variant_data(struct_def), generics)
952         }
953         ItemKind::Union(struct_def, generics) => {
954             let generics = folder.fold_generics(generics);
955             ItemKind::Union(folder.fold_variant_data(struct_def), generics)
956         }
957         ItemKind::Impl(unsafety,
958                        polarity,
959                        defaultness,
960                        generics,
961                        ifce,
962                        ty,
963                        impl_items) => ItemKind::Impl(
964             unsafety,
965             polarity,
966             defaultness,
967             folder.fold_generics(generics),
968             ifce.map(|trait_ref| folder.fold_trait_ref(trait_ref.clone())),
969             folder.fold_ty(ty),
970             impl_items.move_flat_map(|item| folder.fold_impl_item(item)),
971         ),
972         ItemKind::Trait(is_auto, unsafety, generics, bounds, items) => ItemKind::Trait(
973             is_auto,
974             unsafety,
975             folder.fold_generics(generics),
976             folder.fold_bounds(bounds),
977             items.move_flat_map(|item| folder.fold_trait_item(item)),
978         ),
979         ItemKind::TraitAlias(generics, bounds) => ItemKind::TraitAlias(
980             folder.fold_generics(generics),
981             folder.fold_bounds(bounds)),
982         ItemKind::Mac(m) => ItemKind::Mac(folder.fold_mac(m)),
983         ItemKind::MacroDef(def) => ItemKind::MacroDef(folder.fold_macro_def(def)),
984     }
985 }
986
987 pub fn noop_fold_trait_item<T: Folder>(i: TraitItem, folder: &mut T) -> SmallVec<[TraitItem; 1]> {
988     smallvec![TraitItem {
989         id: folder.new_id(i.id),
990         ident: folder.fold_ident(i.ident),
991         attrs: fold_attrs(i.attrs, folder),
992         generics: folder.fold_generics(i.generics),
993         node: match i.node {
994             TraitItemKind::Const(ty, default) => {
995                 TraitItemKind::Const(folder.fold_ty(ty),
996                                default.map(|x| folder.fold_expr(x)))
997             }
998             TraitItemKind::Method(sig, body) => {
999                 TraitItemKind::Method(noop_fold_method_sig(sig, folder),
1000                                 body.map(|x| folder.fold_block(x)))
1001             }
1002             TraitItemKind::Type(bounds, default) => {
1003                 TraitItemKind::Type(folder.fold_bounds(bounds),
1004                               default.map(|x| folder.fold_ty(x)))
1005             }
1006             ast::TraitItemKind::Macro(mac) => {
1007                 TraitItemKind::Macro(folder.fold_mac(mac))
1008             }
1009         },
1010         span: folder.new_span(i.span),
1011         tokens: i.tokens,
1012     }]
1013 }
1014
1015 pub fn noop_fold_impl_item<T: Folder>(i: ImplItem, folder: &mut T)-> SmallVec<[ImplItem; 1]> {
1016     smallvec![ImplItem {
1017         id: folder.new_id(i.id),
1018         vis: folder.fold_vis(i.vis),
1019         ident: folder.fold_ident(i.ident),
1020         attrs: fold_attrs(i.attrs, folder),
1021         generics: folder.fold_generics(i.generics),
1022         defaultness: i.defaultness,
1023         node: match i.node  {
1024             ast::ImplItemKind::Const(ty, expr) => {
1025                 ast::ImplItemKind::Const(folder.fold_ty(ty), folder.fold_expr(expr))
1026             }
1027             ast::ImplItemKind::Method(sig, body) => {
1028                 ast::ImplItemKind::Method(noop_fold_method_sig(sig, folder),
1029                                folder.fold_block(body))
1030             }
1031             ast::ImplItemKind::Type(ty) => ast::ImplItemKind::Type(folder.fold_ty(ty)),
1032             ast::ImplItemKind::Existential(bounds) => {
1033                 ast::ImplItemKind::Existential(folder.fold_bounds(bounds))
1034             },
1035             ast::ImplItemKind::Macro(mac) => ast::ImplItemKind::Macro(folder.fold_mac(mac))
1036         },
1037         span: folder.new_span(i.span),
1038         tokens: i.tokens,
1039     }]
1040 }
1041
1042 pub fn noop_fold_fn_header<T: Folder>(mut header: FnHeader, folder: &mut T) -> FnHeader {
1043     header.asyncness = folder.fold_asyncness(header.asyncness);
1044     header
1045 }
1046
1047 pub fn noop_fold_mod<T: Folder>(Mod {inner, items, inline}: Mod, folder: &mut T) -> Mod {
1048     Mod {
1049         inner: folder.new_span(inner),
1050         items: items.move_flat_map(|x| folder.fold_item(x)),
1051         inline: inline,
1052     }
1053 }
1054
1055 pub fn noop_fold_crate<T: Folder>(Crate {module, attrs, span}: Crate,
1056                                   folder: &mut T) -> Crate {
1057     let mut items = folder.fold_item(P(ast::Item {
1058         ident: keywords::Invalid.ident(),
1059         attrs,
1060         id: ast::DUMMY_NODE_ID,
1061         vis: respan(span.shrink_to_lo(), ast::VisibilityKind::Public),
1062         span,
1063         node: ast::ItemKind::Mod(module),
1064         tokens: None,
1065     })).into_iter();
1066
1067     let (module, attrs, span) = match items.next() {
1068         Some(item) => {
1069             assert!(items.next().is_none(),
1070                     "a crate cannot expand to more than one item");
1071             item.and_then(|ast::Item { attrs, span, node, .. }| {
1072                 match node {
1073                     ast::ItemKind::Mod(m) => (m, attrs, span),
1074                     _ => panic!("fold converted a module to not a module"),
1075                 }
1076             })
1077         }
1078         None => (ast::Mod {
1079             inner: span,
1080             items: vec![],
1081             inline: true,
1082         }, vec![], span)
1083     };
1084
1085     Crate {
1086         module,
1087         attrs,
1088         span,
1089     }
1090 }
1091
1092 // fold one item into possibly many items
1093 pub fn noop_fold_item<T: Folder>(i: P<Item>, folder: &mut T) -> SmallVec<[P<Item>; 1]> {
1094     smallvec![i.map(|i| folder.fold_item_simple(i))]
1095 }
1096
1097 // fold one item into exactly one item
1098 pub fn noop_fold_item_simple<T: Folder>(Item {id, ident, attrs, node, vis, span, tokens}: Item,
1099                                         folder: &mut T) -> Item {
1100     Item {
1101         id: folder.new_id(id),
1102         vis: folder.fold_vis(vis),
1103         ident: folder.fold_ident(ident),
1104         attrs: fold_attrs(attrs, folder),
1105         node: folder.fold_item_kind(node),
1106         span: folder.new_span(span),
1107
1108         // FIXME: if this is replaced with a call to `folder.fold_tts` it causes
1109         //        an ICE during resolve... odd!
1110         tokens,
1111     }
1112 }
1113
1114 pub fn noop_fold_foreign_item<T: Folder>(ni: ForeignItem, folder: &mut T)
1115     -> SmallVec<[ForeignItem; 1]>
1116 {
1117     smallvec![folder.fold_foreign_item_simple(ni)]
1118 }
1119
1120 pub fn noop_fold_foreign_item_simple<T: Folder>(ni: ForeignItem, folder: &mut T) -> ForeignItem {
1121     ForeignItem {
1122         id: folder.new_id(ni.id),
1123         vis: folder.fold_vis(ni.vis),
1124         ident: folder.fold_ident(ni.ident),
1125         attrs: fold_attrs(ni.attrs, folder),
1126         node: match ni.node {
1127             ForeignItemKind::Fn(fdec, generics) => {
1128                 ForeignItemKind::Fn(folder.fold_fn_decl(fdec), folder.fold_generics(generics))
1129             }
1130             ForeignItemKind::Static(t, m) => {
1131                 ForeignItemKind::Static(folder.fold_ty(t), m)
1132             }
1133             ForeignItemKind::Ty => ForeignItemKind::Ty,
1134             ForeignItemKind::Macro(mac) => ForeignItemKind::Macro(folder.fold_mac(mac)),
1135         },
1136         span: folder.new_span(ni.span)
1137     }
1138 }
1139
1140 pub fn noop_fold_method_sig<T: Folder>(sig: MethodSig, folder: &mut T) -> MethodSig {
1141     MethodSig {
1142         header: folder.fold_fn_header(sig.header),
1143         decl: folder.fold_fn_decl(sig.decl)
1144     }
1145 }
1146
1147 pub fn noop_fold_pat<T: Folder>(p: P<Pat>, folder: &mut T) -> P<Pat> {
1148     p.map(|Pat {id, node, span}| Pat {
1149         id: folder.new_id(id),
1150         node: match node {
1151             PatKind::Wild => PatKind::Wild,
1152             PatKind::Ident(binding_mode, ident, sub) => {
1153                 PatKind::Ident(binding_mode,
1154                                folder.fold_ident(ident),
1155                                sub.map(|x| folder.fold_pat(x)))
1156             }
1157             PatKind::Lit(e) => PatKind::Lit(folder.fold_expr(e)),
1158             PatKind::TupleStruct(pth, pats, ddpos) => {
1159                 PatKind::TupleStruct(folder.fold_path(pth),
1160                         pats.move_map(|x| folder.fold_pat(x)), ddpos)
1161             }
1162             PatKind::Path(qself, pth) => {
1163                 let (qself, pth) = folder.fold_qpath(qself, pth);
1164                 PatKind::Path(qself, pth)
1165             }
1166             PatKind::Struct(pth, fields, etc) => {
1167                 let pth = folder.fold_path(pth);
1168                 let fs = fields.move_map(|f| {
1169                     Spanned { span: folder.new_span(f.span),
1170                               node: ast::FieldPat {
1171                                   ident: folder.fold_ident(f.node.ident),
1172                                   pat: folder.fold_pat(f.node.pat),
1173                                   is_shorthand: f.node.is_shorthand,
1174                                   attrs: fold_attrs(f.node.attrs.into(), folder).into()
1175                               }}
1176                 });
1177                 PatKind::Struct(pth, fs, etc)
1178             }
1179             PatKind::Tuple(elts, ddpos) => {
1180                 PatKind::Tuple(elts.move_map(|x| folder.fold_pat(x)), ddpos)
1181             }
1182             PatKind::Box(inner) => PatKind::Box(folder.fold_pat(inner)),
1183             PatKind::Ref(inner, mutbl) => PatKind::Ref(folder.fold_pat(inner), mutbl),
1184             PatKind::Range(e1, e2, Spanned { span, node: end }) => {
1185                 PatKind::Range(folder.fold_expr(e1),
1186                                folder.fold_expr(e2),
1187                                Spanned { span, node: folder.fold_range_end(end) })
1188             },
1189             PatKind::Slice(before, slice, after) => {
1190                 PatKind::Slice(before.move_map(|x| folder.fold_pat(x)),
1191                        slice.map(|x| folder.fold_pat(x)),
1192                        after.move_map(|x| folder.fold_pat(x)))
1193             }
1194             PatKind::Paren(inner) => PatKind::Paren(folder.fold_pat(inner)),
1195             PatKind::Mac(mac) => PatKind::Mac(folder.fold_mac(mac))
1196         },
1197         span: folder.new_span(span)
1198     })
1199 }
1200
1201 pub fn noop_fold_range_end<T: Folder>(end: RangeEnd, _folder: &mut T) -> RangeEnd {
1202     end
1203 }
1204
1205 pub fn noop_fold_anon_const<T: Folder>(constant: AnonConst, folder: &mut T) -> AnonConst {
1206     let AnonConst {id, value} = constant;
1207     AnonConst {
1208         id: folder.new_id(id),
1209         value: folder.fold_expr(value),
1210     }
1211 }
1212
1213 pub fn noop_fold_expr<T: Folder>(Expr {id, node, span, attrs}: Expr, folder: &mut T) -> Expr {
1214     Expr {
1215         node: match node {
1216             ExprKind::Box(e) => {
1217                 ExprKind::Box(folder.fold_expr(e))
1218             }
1219             ExprKind::ObsoleteInPlace(a, b) => {
1220                 ExprKind::ObsoleteInPlace(folder.fold_expr(a), folder.fold_expr(b))
1221             }
1222             ExprKind::Array(exprs) => {
1223                 ExprKind::Array(folder.fold_exprs(exprs))
1224             }
1225             ExprKind::Repeat(expr, count) => {
1226                 ExprKind::Repeat(folder.fold_expr(expr), folder.fold_anon_const(count))
1227             }
1228             ExprKind::Tup(exprs) => ExprKind::Tup(folder.fold_exprs(exprs)),
1229             ExprKind::Call(f, args) => {
1230                 ExprKind::Call(folder.fold_expr(f),
1231                          folder.fold_exprs(args))
1232             }
1233             ExprKind::MethodCall(seg, args) => {
1234                 ExprKind::MethodCall(
1235                     PathSegment {
1236                         ident: folder.fold_ident(seg.ident),
1237                         args: seg.args.map(|args| {
1238                             args.map(|args| folder.fold_generic_args(args))
1239                         }),
1240                     },
1241                     folder.fold_exprs(args))
1242             }
1243             ExprKind::Binary(binop, lhs, rhs) => {
1244                 ExprKind::Binary(binop,
1245                         folder.fold_expr(lhs),
1246                         folder.fold_expr(rhs))
1247             }
1248             ExprKind::Unary(binop, ohs) => {
1249                 ExprKind::Unary(binop, folder.fold_expr(ohs))
1250             }
1251             ExprKind::Lit(l) => ExprKind::Lit(l),
1252             ExprKind::Cast(expr, ty) => {
1253                 ExprKind::Cast(folder.fold_expr(expr), folder.fold_ty(ty))
1254             }
1255             ExprKind::Type(expr, ty) => {
1256                 ExprKind::Type(folder.fold_expr(expr), folder.fold_ty(ty))
1257             }
1258             ExprKind::AddrOf(m, ohs) => ExprKind::AddrOf(m, folder.fold_expr(ohs)),
1259             ExprKind::If(cond, tr, fl) => {
1260                 ExprKind::If(folder.fold_expr(cond),
1261                        folder.fold_block(tr),
1262                        fl.map(|x| folder.fold_expr(x)))
1263             }
1264             ExprKind::IfLet(pats, expr, tr, fl) => {
1265                 ExprKind::IfLet(pats.move_map(|pat| folder.fold_pat(pat)),
1266                           folder.fold_expr(expr),
1267                           folder.fold_block(tr),
1268                           fl.map(|x| folder.fold_expr(x)))
1269             }
1270             ExprKind::While(cond, body, opt_label) => {
1271                 ExprKind::While(folder.fold_expr(cond),
1272                           folder.fold_block(body),
1273                           opt_label.map(|label| folder.fold_label(label)))
1274             }
1275             ExprKind::WhileLet(pats, expr, body, opt_label) => {
1276                 ExprKind::WhileLet(pats.move_map(|pat| folder.fold_pat(pat)),
1277                              folder.fold_expr(expr),
1278                              folder.fold_block(body),
1279                              opt_label.map(|label| folder.fold_label(label)))
1280             }
1281             ExprKind::ForLoop(pat, iter, body, opt_label) => {
1282                 ExprKind::ForLoop(folder.fold_pat(pat),
1283                             folder.fold_expr(iter),
1284                             folder.fold_block(body),
1285                             opt_label.map(|label| folder.fold_label(label)))
1286             }
1287             ExprKind::Loop(body, opt_label) => {
1288                 ExprKind::Loop(folder.fold_block(body),
1289                                opt_label.map(|label| folder.fold_label(label)))
1290             }
1291             ExprKind::Match(expr, arms) => {
1292                 ExprKind::Match(folder.fold_expr(expr),
1293                           arms.move_map(|x| folder.fold_arm(x)))
1294             }
1295             ExprKind::Closure(capture_clause, asyncness, movability, decl, body, span) => {
1296                 ExprKind::Closure(capture_clause,
1297                                   folder.fold_asyncness(asyncness),
1298                                   movability,
1299                                   folder.fold_fn_decl(decl),
1300                                   folder.fold_expr(body),
1301                                   folder.new_span(span))
1302             }
1303             ExprKind::Block(blk, opt_label) => {
1304                 ExprKind::Block(folder.fold_block(blk),
1305                                 opt_label.map(|label| folder.fold_label(label)))
1306             }
1307             ExprKind::Async(capture_clause, node_id, body) => {
1308                 ExprKind::Async(
1309                     capture_clause,
1310                     folder.new_id(node_id),
1311                     folder.fold_block(body),
1312                 )
1313             }
1314             ExprKind::Assign(el, er) => {
1315                 ExprKind::Assign(folder.fold_expr(el), folder.fold_expr(er))
1316             }
1317             ExprKind::AssignOp(op, el, er) => {
1318                 ExprKind::AssignOp(op,
1319                             folder.fold_expr(el),
1320                             folder.fold_expr(er))
1321             }
1322             ExprKind::Field(el, ident) => {
1323                 ExprKind::Field(folder.fold_expr(el), folder.fold_ident(ident))
1324             }
1325             ExprKind::Index(el, er) => {
1326                 ExprKind::Index(folder.fold_expr(el), folder.fold_expr(er))
1327             }
1328             ExprKind::Range(e1, e2, lim) => {
1329                 ExprKind::Range(e1.map(|x| folder.fold_expr(x)),
1330                                 e2.map(|x| folder.fold_expr(x)),
1331                                 lim)
1332             }
1333             ExprKind::Path(qself, path) => {
1334                 let (qself, path) = folder.fold_qpath(qself, path);
1335                 ExprKind::Path(qself, path)
1336             }
1337             ExprKind::Break(opt_label, opt_expr) => {
1338                 ExprKind::Break(opt_label.map(|label| folder.fold_label(label)),
1339                                 opt_expr.map(|e| folder.fold_expr(e)))
1340             }
1341             ExprKind::Continue(opt_label) => {
1342                 ExprKind::Continue(opt_label.map(|label| folder.fold_label(label)))
1343             }
1344             ExprKind::Ret(e) => ExprKind::Ret(e.map(|x| folder.fold_expr(x))),
1345             ExprKind::InlineAsm(asm) => ExprKind::InlineAsm(asm.map(|asm| {
1346                 InlineAsm {
1347                     inputs: asm.inputs.move_map(|(c, input)| {
1348                         (c, folder.fold_expr(input))
1349                     }),
1350                     outputs: asm.outputs.move_map(|out| {
1351                         InlineAsmOutput {
1352                             constraint: out.constraint,
1353                             expr: folder.fold_expr(out.expr),
1354                             is_rw: out.is_rw,
1355                             is_indirect: out.is_indirect,
1356                         }
1357                     }),
1358                     ..asm
1359                 }
1360             })),
1361             ExprKind::Mac(mac) => ExprKind::Mac(folder.fold_mac(mac)),
1362             ExprKind::Struct(path, fields, maybe_expr) => {
1363                 ExprKind::Struct(folder.fold_path(path),
1364                         fields.move_map(|x| folder.fold_field(x)),
1365                         maybe_expr.map(|x| folder.fold_expr(x)))
1366             },
1367             ExprKind::Paren(ex) => {
1368                 let sub_expr = folder.fold_expr(ex);
1369                 return Expr {
1370                     // Nodes that are equal modulo `Paren` sugar no-ops should have the same ids.
1371                     id: sub_expr.id,
1372                     node: ExprKind::Paren(sub_expr),
1373                     span: folder.new_span(span),
1374                     attrs: fold_attrs(attrs.into(), folder).into(),
1375                 };
1376             }
1377             ExprKind::Yield(ex) => ExprKind::Yield(ex.map(|x| folder.fold_expr(x))),
1378             ExprKind::Try(ex) => ExprKind::Try(folder.fold_expr(ex)),
1379             ExprKind::TryBlock(body) => ExprKind::TryBlock(folder.fold_block(body)),
1380         },
1381         id: folder.new_id(id),
1382         span: folder.new_span(span),
1383         attrs: fold_attrs(attrs.into(), folder).into(),
1384     }
1385 }
1386
1387 pub fn noop_fold_opt_expr<T: Folder>(e: P<Expr>, folder: &mut T) -> Option<P<Expr>> {
1388     Some(folder.fold_expr(e))
1389 }
1390
1391 pub fn noop_fold_exprs<T: Folder>(es: Vec<P<Expr>>, folder: &mut T) -> Vec<P<Expr>> {
1392     es.move_flat_map(|e| folder.fold_opt_expr(e))
1393 }
1394
1395 pub fn noop_fold_stmt<T: Folder>(Stmt {node, span, id}: Stmt, folder: &mut T) -> SmallVec<[Stmt; 1]>
1396 {
1397     let id = folder.new_id(id);
1398     let span = folder.new_span(span);
1399     noop_fold_stmt_kind(node, folder).into_iter().map(|node| {
1400         Stmt { id: id, node: node, span: span }
1401     }).collect()
1402 }
1403
1404 pub fn noop_fold_stmt_kind<T: Folder>(node: StmtKind, folder: &mut T) -> SmallVec<[StmtKind; 1]> {
1405     match node {
1406         StmtKind::Local(local) => smallvec![StmtKind::Local(folder.fold_local(local))],
1407         StmtKind::Item(item) => folder.fold_item(item).into_iter().map(StmtKind::Item).collect(),
1408         StmtKind::Expr(expr) => {
1409             folder.fold_opt_expr(expr).into_iter().map(StmtKind::Expr).collect()
1410         }
1411         StmtKind::Semi(expr) => {
1412             folder.fold_opt_expr(expr).into_iter().map(StmtKind::Semi).collect()
1413         }
1414         StmtKind::Mac(mac) => smallvec![StmtKind::Mac(mac.map(|(mac, semi, attrs)| {
1415             (folder.fold_mac(mac), semi, fold_attrs(attrs.into(), folder).into())
1416         }))],
1417     }
1418 }
1419
1420 pub fn noop_fold_vis<T: Folder>(vis: Visibility, folder: &mut T) -> Visibility {
1421     match vis.node {
1422         VisibilityKind::Restricted { path, id } => {
1423             respan(vis.span, VisibilityKind::Restricted {
1424                 path: path.map(|path| folder.fold_path(path)),
1425                 id: folder.new_id(id),
1426             })
1427         }
1428         _ => vis,
1429     }
1430 }
1431
1432 #[cfg(test)]
1433 mod tests {
1434     use std::io;
1435     use ast::{self, Ident};
1436     use util::parser_testing::{string_to_crate, matches_codepattern};
1437     use print::pprust;
1438     use fold;
1439     use with_globals;
1440     use super::*;
1441
1442     // this version doesn't care about getting comments or docstrings in.
1443     fn fake_print_crate(s: &mut pprust::State,
1444                         krate: &ast::Crate) -> io::Result<()> {
1445         s.print_mod(&krate.module, &krate.attrs)
1446     }
1447
1448     // change every identifier to "zz"
1449     struct ToZzIdentFolder;
1450
1451     impl Folder for ToZzIdentFolder {
1452         fn fold_ident(&mut self, _: ast::Ident) -> ast::Ident {
1453             Ident::from_str("zz")
1454         }
1455         fn fold_mac(&mut self, mac: ast::Mac) -> ast::Mac {
1456             fold::noop_fold_mac(mac, self)
1457         }
1458     }
1459
1460     // maybe add to expand.rs...
1461     macro_rules! assert_pred {
1462         ($pred:expr, $predname:expr, $a:expr , $b:expr) => (
1463             {
1464                 let pred_val = $pred;
1465                 let a_val = $a;
1466                 let b_val = $b;
1467                 if !(pred_val(&a_val, &b_val)) {
1468                     panic!("expected args satisfying {}, got {} and {}",
1469                           $predname, a_val, b_val);
1470                 }
1471             }
1472         )
1473     }
1474
1475     // make sure idents get transformed everywhere
1476     #[test] fn ident_transformation () {
1477         with_globals(|| {
1478             let mut zz_fold = ToZzIdentFolder;
1479             let ast = string_to_crate(
1480                 "#[a] mod b {fn c (d : e, f : g) {h!(i,j,k);l;m}}".to_string());
1481             let folded_crate = zz_fold.fold_crate(ast);
1482             assert_pred!(
1483                 matches_codepattern,
1484                 "matches_codepattern",
1485                 pprust::to_string(|s| fake_print_crate(s, &folded_crate)),
1486                 "#[zz]mod zz{fn zz(zz:zz,zz:zz){zz!(zz,zz,zz);zz;zz}}".to_string());
1487         })
1488     }
1489
1490     // even inside macro defs....
1491     #[test] fn ident_transformation_in_defs () {
1492         with_globals(|| {
1493             let mut zz_fold = ToZzIdentFolder;
1494             let ast = string_to_crate(
1495                 "macro_rules! a {(b $c:expr $(d $e:token)f+ => \
1496                 (g $(d $d $e)+))} ".to_string());
1497             let folded_crate = zz_fold.fold_crate(ast);
1498             assert_pred!(
1499                 matches_codepattern,
1500                 "matches_codepattern",
1501                 pprust::to_string(|s| fake_print_crate(s, &folded_crate)),
1502                 "macro_rules! zz((zz$zz:zz$(zz $zz:zz)zz+=>(zz$(zz$zz$zz)+)));".to_string());
1503         })
1504     }
1505 }