]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/visit.rs
lowering: cleanup some hofs
[rust.git] / src / libsyntax / visit.rs
1 //! AST walker. Each overridden visit method has full control over what
2 //! happens with its node, it can do its own traversal of the node's children,
3 //! call `visit::walk_*` to apply the default traversal algorithm, or prevent
4 //! deeper traversal by doing nothing.
5 //!
6 //! Note: it is an important invariant that the default visitor walks the body
7 //! of a function in "execution order" (more concretely, reverse post-order
8 //! with respect to the CFG implied by the AST), meaning that if AST node A may
9 //! execute before AST node B, then A is visited first. The borrow checker in
10 //! particular relies on this property.
11 //!
12 //! Note: walking an AST before macro expansion is probably a bad idea. For
13 //! instance, a walker looking for item names in a module will miss all of
14 //! those that are created by the expansion of a macro.
15
16 use crate::ast::*;
17 use crate::token::Token;
18 use crate::tokenstream::{TokenStream, TokenTree};
19
20 use rustc_span::Span;
21
22 #[derive(Copy, Clone)]
23 pub enum FnKind<'a> {
24     /// E.g., `fn foo()` or `extern "Abi" fn foo()`.
25     ItemFn(Ident, &'a FnHeader, &'a Visibility, &'a Block),
26
27     /// E.g., `fn foo(&self)`.
28     Method(Ident, &'a FnSig, &'a Visibility, &'a Block),
29
30     /// E.g., `|x, y| body`.
31     Closure(&'a Expr),
32 }
33
34 impl<'a> FnKind<'a> {
35     pub fn header(&self) -> Option<&'a FnHeader> {
36         match *self {
37             FnKind::ItemFn(_, header, _, _) => Some(header),
38             FnKind::Method(_, sig, _, _) => Some(&sig.header),
39             FnKind::Closure(_) => None,
40         }
41     }
42 }
43
44 /// Each method of the `Visitor` trait is a hook to be potentially
45 /// overridden. Each method's default implementation recursively visits
46 /// the substructure of the input via the corresponding `walk` method;
47 /// e.g., the `visit_mod` method by default calls `visit::walk_mod`.
48 ///
49 /// If you want to ensure that your code handles every variant
50 /// explicitly, you need to override each method. (And you also need
51 /// to monitor future changes to `Visitor` in case a new method with a
52 /// new default implementation gets introduced.)
53 pub trait Visitor<'ast>: Sized {
54     fn visit_name(&mut self, _span: Span, _name: Name) {
55         // Nothing to do.
56     }
57     fn visit_ident(&mut self, ident: Ident) {
58         walk_ident(self, ident);
59     }
60     fn visit_mod(&mut self, m: &'ast Mod, _s: Span, _attrs: &[Attribute], _n: NodeId) {
61         walk_mod(self, m);
62     }
63     fn visit_foreign_item(&mut self, i: &'ast ForeignItem) {
64         walk_foreign_item(self, i)
65     }
66     fn visit_global_asm(&mut self, ga: &'ast GlobalAsm) {
67         walk_global_asm(self, ga)
68     }
69     fn visit_item(&mut self, i: &'ast Item) {
70         walk_item(self, i)
71     }
72     fn visit_local(&mut self, l: &'ast Local) {
73         walk_local(self, l)
74     }
75     fn visit_block(&mut self, b: &'ast Block) {
76         walk_block(self, b)
77     }
78     fn visit_stmt(&mut self, s: &'ast Stmt) {
79         walk_stmt(self, s)
80     }
81     fn visit_param(&mut self, param: &'ast Param) {
82         walk_param(self, param)
83     }
84     fn visit_arm(&mut self, a: &'ast Arm) {
85         walk_arm(self, a)
86     }
87     fn visit_pat(&mut self, p: &'ast Pat) {
88         walk_pat(self, p)
89     }
90     fn visit_anon_const(&mut self, c: &'ast AnonConst) {
91         walk_anon_const(self, c)
92     }
93     fn visit_expr(&mut self, ex: &'ast Expr) {
94         walk_expr(self, ex)
95     }
96     fn visit_expr_post(&mut self, _ex: &'ast Expr) {}
97     fn visit_ty(&mut self, t: &'ast Ty) {
98         walk_ty(self, t)
99     }
100     fn visit_generic_param(&mut self, param: &'ast GenericParam) {
101         walk_generic_param(self, param)
102     }
103     fn visit_generics(&mut self, g: &'ast Generics) {
104         walk_generics(self, g)
105     }
106     fn visit_where_predicate(&mut self, p: &'ast WherePredicate) {
107         walk_where_predicate(self, p)
108     }
109     fn visit_fn(&mut self, fk: FnKind<'ast>, fd: &'ast FnDecl, s: Span, _: NodeId) {
110         walk_fn(self, fk, fd, s)
111     }
112     fn visit_trait_item(&mut self, i: &'ast AssocItem) {
113         walk_trait_item(self, i)
114     }
115     fn visit_impl_item(&mut self, i: &'ast AssocItem) {
116         walk_impl_item(self, i)
117     }
118     fn visit_assoc_item(&mut self, i: &'ast AssocItem) {
119         walk_assoc_item(self, i)
120     }
121     fn visit_trait_ref(&mut self, t: &'ast TraitRef) {
122         walk_trait_ref(self, t)
123     }
124     fn visit_param_bound(&mut self, bounds: &'ast GenericBound) {
125         walk_param_bound(self, bounds)
126     }
127     fn visit_poly_trait_ref(&mut self, t: &'ast PolyTraitRef, m: &'ast TraitBoundModifier) {
128         walk_poly_trait_ref(self, t, m)
129     }
130     fn visit_variant_data(&mut self, s: &'ast VariantData) {
131         walk_struct_def(self, s)
132     }
133     fn visit_struct_field(&mut self, s: &'ast StructField) {
134         walk_struct_field(self, s)
135     }
136     fn visit_enum_def(
137         &mut self,
138         enum_definition: &'ast EnumDef,
139         generics: &'ast Generics,
140         item_id: NodeId,
141         _: Span,
142     ) {
143         walk_enum_def(self, enum_definition, generics, item_id)
144     }
145     fn visit_variant(&mut self, v: &'ast Variant) {
146         walk_variant(self, v)
147     }
148     fn visit_label(&mut self, label: &'ast Label) {
149         walk_label(self, label)
150     }
151     fn visit_lifetime(&mut self, lifetime: &'ast Lifetime) {
152         walk_lifetime(self, lifetime)
153     }
154     fn visit_mac(&mut self, _mac: &'ast Mac) {
155         panic!("visit_mac disabled by default");
156         // N.B., see note about macros above.
157         // if you really want a visitor that
158         // works on macros, use this
159         // definition in your trait impl:
160         // visit::walk_mac(self, _mac)
161     }
162     fn visit_mac_def(&mut self, _mac: &'ast MacroDef, _id: NodeId) {
163         // Nothing to do
164     }
165     fn visit_path(&mut self, path: &'ast Path, _id: NodeId) {
166         walk_path(self, path)
167     }
168     fn visit_use_tree(&mut self, use_tree: &'ast UseTree, id: NodeId, _nested: bool) {
169         walk_use_tree(self, use_tree, id)
170     }
171     fn visit_path_segment(&mut self, path_span: Span, path_segment: &'ast PathSegment) {
172         walk_path_segment(self, path_span, path_segment)
173     }
174     fn visit_generic_args(&mut self, path_span: Span, generic_args: &'ast GenericArgs) {
175         walk_generic_args(self, path_span, generic_args)
176     }
177     fn visit_generic_arg(&mut self, generic_arg: &'ast GenericArg) {
178         match generic_arg {
179             GenericArg::Lifetime(lt) => self.visit_lifetime(lt),
180             GenericArg::Type(ty) => self.visit_ty(ty),
181             GenericArg::Const(ct) => self.visit_anon_const(ct),
182         }
183     }
184     fn visit_assoc_ty_constraint(&mut self, constraint: &'ast AssocTyConstraint) {
185         walk_assoc_ty_constraint(self, constraint)
186     }
187     fn visit_attribute(&mut self, attr: &'ast Attribute) {
188         walk_attribute(self, attr)
189     }
190     fn visit_tt(&mut self, tt: TokenTree) {
191         walk_tt(self, tt)
192     }
193     fn visit_tts(&mut self, tts: TokenStream) {
194         walk_tts(self, tts)
195     }
196     fn visit_token(&mut self, _t: Token) {}
197     // FIXME: add `visit_interpolated` and `walk_interpolated`
198     fn visit_vis(&mut self, vis: &'ast Visibility) {
199         walk_vis(self, vis)
200     }
201     fn visit_fn_ret_ty(&mut self, ret_ty: &'ast FunctionRetTy) {
202         walk_fn_ret_ty(self, ret_ty)
203     }
204     fn visit_fn_header(&mut self, _header: &'ast FnHeader) {
205         // Nothing to do
206     }
207     fn visit_field(&mut self, f: &'ast Field) {
208         walk_field(self, f)
209     }
210     fn visit_field_pattern(&mut self, fp: &'ast FieldPat) {
211         walk_field_pattern(self, fp)
212     }
213 }
214
215 #[macro_export]
216 macro_rules! walk_list {
217     ($visitor: expr, $method: ident, $list: expr) => {
218         for elem in $list {
219             $visitor.$method(elem)
220         }
221     };
222     ($visitor: expr, $method: ident, $list: expr, $($extra_args: expr),*) => {
223         for elem in $list {
224             $visitor.$method(elem, $($extra_args,)*)
225         }
226     }
227 }
228
229 pub fn walk_ident<'a, V: Visitor<'a>>(visitor: &mut V, ident: Ident) {
230     visitor.visit_name(ident.span, ident.name);
231 }
232
233 pub fn walk_crate<'a, V: Visitor<'a>>(visitor: &mut V, krate: &'a Crate) {
234     visitor.visit_mod(&krate.module, krate.span, &krate.attrs, CRATE_NODE_ID);
235     walk_list!(visitor, visit_attribute, &krate.attrs);
236 }
237
238 pub fn walk_mod<'a, V: Visitor<'a>>(visitor: &mut V, module: &'a Mod) {
239     walk_list!(visitor, visit_item, &module.items);
240 }
241
242 pub fn walk_local<'a, V: Visitor<'a>>(visitor: &mut V, local: &'a Local) {
243     for attr in local.attrs.iter() {
244         visitor.visit_attribute(attr);
245     }
246     visitor.visit_pat(&local.pat);
247     walk_list!(visitor, visit_ty, &local.ty);
248     walk_list!(visitor, visit_expr, &local.init);
249 }
250
251 pub fn walk_label<'a, V: Visitor<'a>>(visitor: &mut V, label: &'a Label) {
252     visitor.visit_ident(label.ident);
253 }
254
255 pub fn walk_lifetime<'a, V: Visitor<'a>>(visitor: &mut V, lifetime: &'a Lifetime) {
256     visitor.visit_ident(lifetime.ident);
257 }
258
259 pub fn walk_poly_trait_ref<'a, V>(
260     visitor: &mut V,
261     trait_ref: &'a PolyTraitRef,
262     _: &TraitBoundModifier,
263 ) where
264     V: Visitor<'a>,
265 {
266     walk_list!(visitor, visit_generic_param, &trait_ref.bound_generic_params);
267     visitor.visit_trait_ref(&trait_ref.trait_ref);
268 }
269
270 pub fn walk_trait_ref<'a, V: Visitor<'a>>(visitor: &mut V, trait_ref: &'a TraitRef) {
271     visitor.visit_path(&trait_ref.path, trait_ref.ref_id)
272 }
273
274 pub fn walk_item<'a, V: Visitor<'a>>(visitor: &mut V, item: &'a Item) {
275     visitor.visit_vis(&item.vis);
276     visitor.visit_ident(item.ident);
277     match item.kind {
278         ItemKind::ExternCrate(orig_name) => {
279             if let Some(orig_name) = orig_name {
280                 visitor.visit_name(item.span, orig_name);
281             }
282         }
283         ItemKind::Use(ref use_tree) => visitor.visit_use_tree(use_tree, item.id, false),
284         ItemKind::Static(ref typ, _, ref expr) | ItemKind::Const(ref typ, ref expr) => {
285             visitor.visit_ty(typ);
286             visitor.visit_expr(expr);
287         }
288         ItemKind::Fn(ref sig, ref generics, ref body) => {
289             visitor.visit_generics(generics);
290             visitor.visit_fn_header(&sig.header);
291             visitor.visit_fn(
292                 FnKind::ItemFn(item.ident, &sig.header, &item.vis, body),
293                 &sig.decl,
294                 item.span,
295                 item.id,
296             )
297         }
298         ItemKind::Mod(ref module) => visitor.visit_mod(module, item.span, &item.attrs, item.id),
299         ItemKind::ForeignMod(ref foreign_module) => {
300             walk_list!(visitor, visit_foreign_item, &foreign_module.items);
301         }
302         ItemKind::GlobalAsm(ref ga) => visitor.visit_global_asm(ga),
303         ItemKind::TyAlias(ref typ, ref generics) => {
304             visitor.visit_ty(typ);
305             visitor.visit_generics(generics)
306         }
307         ItemKind::Enum(ref enum_definition, ref generics) => {
308             visitor.visit_generics(generics);
309             visitor.visit_enum_def(enum_definition, generics, item.id, item.span)
310         }
311         ItemKind::Impl {
312             unsafety: _,
313             polarity: _,
314             defaultness: _,
315             ref generics,
316             ref of_trait,
317             ref self_ty,
318             ref items,
319         } => {
320             visitor.visit_generics(generics);
321             walk_list!(visitor, visit_trait_ref, of_trait);
322             visitor.visit_ty(self_ty);
323             walk_list!(visitor, visit_impl_item, items);
324         }
325         ItemKind::Struct(ref struct_definition, ref generics)
326         | ItemKind::Union(ref struct_definition, ref generics) => {
327             visitor.visit_generics(generics);
328             visitor.visit_variant_data(struct_definition);
329         }
330         ItemKind::Trait(.., ref generics, ref bounds, ref methods) => {
331             visitor.visit_generics(generics);
332             walk_list!(visitor, visit_param_bound, bounds);
333             walk_list!(visitor, visit_trait_item, methods);
334         }
335         ItemKind::TraitAlias(ref generics, ref bounds) => {
336             visitor.visit_generics(generics);
337             walk_list!(visitor, visit_param_bound, bounds);
338         }
339         ItemKind::Mac(ref mac) => visitor.visit_mac(mac),
340         ItemKind::MacroDef(ref ts) => visitor.visit_mac_def(ts, item.id),
341     }
342     walk_list!(visitor, visit_attribute, &item.attrs);
343 }
344
345 pub fn walk_enum_def<'a, V: Visitor<'a>>(
346     visitor: &mut V,
347     enum_definition: &'a EnumDef,
348     _: &'a Generics,
349     _: NodeId,
350 ) {
351     walk_list!(visitor, visit_variant, &enum_definition.variants);
352 }
353
354 pub fn walk_variant<'a, V: Visitor<'a>>(visitor: &mut V, variant: &'a Variant)
355 where
356     V: Visitor<'a>,
357 {
358     visitor.visit_ident(variant.ident);
359     visitor.visit_vis(&variant.vis);
360     visitor.visit_variant_data(&variant.data);
361     walk_list!(visitor, visit_anon_const, &variant.disr_expr);
362     walk_list!(visitor, visit_attribute, &variant.attrs);
363 }
364
365 pub fn walk_field<'a, V: Visitor<'a>>(visitor: &mut V, f: &'a Field) {
366     visitor.visit_expr(&f.expr);
367     visitor.visit_ident(f.ident);
368     walk_list!(visitor, visit_attribute, f.attrs.iter());
369 }
370
371 pub fn walk_field_pattern<'a, V: Visitor<'a>>(visitor: &mut V, fp: &'a FieldPat) {
372     visitor.visit_ident(fp.ident);
373     visitor.visit_pat(&fp.pat);
374     walk_list!(visitor, visit_attribute, fp.attrs.iter());
375 }
376
377 pub fn walk_ty<'a, V: Visitor<'a>>(visitor: &mut V, typ: &'a Ty) {
378     match typ.kind {
379         TyKind::Slice(ref ty) | TyKind::Paren(ref ty) => visitor.visit_ty(ty),
380         TyKind::Ptr(ref mutable_type) => visitor.visit_ty(&mutable_type.ty),
381         TyKind::Rptr(ref opt_lifetime, ref mutable_type) => {
382             walk_list!(visitor, visit_lifetime, opt_lifetime);
383             visitor.visit_ty(&mutable_type.ty)
384         }
385         TyKind::Tup(ref tuple_element_types) => {
386             walk_list!(visitor, visit_ty, tuple_element_types);
387         }
388         TyKind::BareFn(ref function_declaration) => {
389             walk_list!(visitor, visit_generic_param, &function_declaration.generic_params);
390             walk_fn_decl(visitor, &function_declaration.decl);
391         }
392         TyKind::Path(ref maybe_qself, ref path) => {
393             if let Some(ref qself) = *maybe_qself {
394                 visitor.visit_ty(&qself.ty);
395             }
396             visitor.visit_path(path, typ.id);
397         }
398         TyKind::Array(ref ty, ref length) => {
399             visitor.visit_ty(ty);
400             visitor.visit_anon_const(length)
401         }
402         TyKind::TraitObject(ref bounds, ..) | TyKind::ImplTrait(_, ref bounds) => {
403             walk_list!(visitor, visit_param_bound, bounds);
404         }
405         TyKind::Typeof(ref expression) => visitor.visit_anon_const(expression),
406         TyKind::Infer | TyKind::ImplicitSelf | TyKind::Err => {}
407         TyKind::Mac(ref mac) => visitor.visit_mac(mac),
408         TyKind::Never | TyKind::CVarArgs => {}
409     }
410 }
411
412 pub fn walk_path<'a, V: Visitor<'a>>(visitor: &mut V, path: &'a Path) {
413     for segment in &path.segments {
414         visitor.visit_path_segment(path.span, segment);
415     }
416 }
417
418 pub fn walk_use_tree<'a, V: Visitor<'a>>(visitor: &mut V, use_tree: &'a UseTree, id: NodeId) {
419     visitor.visit_path(&use_tree.prefix, id);
420     match use_tree.kind {
421         UseTreeKind::Simple(rename, ..) => {
422             // The extra IDs are handled during HIR lowering.
423             if let Some(rename) = rename {
424                 visitor.visit_ident(rename);
425             }
426         }
427         UseTreeKind::Glob => {}
428         UseTreeKind::Nested(ref use_trees) => {
429             for &(ref nested_tree, nested_id) in use_trees {
430                 visitor.visit_use_tree(nested_tree, nested_id, true);
431             }
432         }
433     }
434 }
435
436 pub fn walk_path_segment<'a, V: Visitor<'a>>(
437     visitor: &mut V,
438     path_span: Span,
439     segment: &'a PathSegment,
440 ) {
441     visitor.visit_ident(segment.ident);
442     if let Some(ref args) = segment.args {
443         visitor.visit_generic_args(path_span, args);
444     }
445 }
446
447 pub fn walk_generic_args<'a, V>(visitor: &mut V, _path_span: Span, generic_args: &'a GenericArgs)
448 where
449     V: Visitor<'a>,
450 {
451     match *generic_args {
452         GenericArgs::AngleBracketed(ref data) => {
453             walk_list!(visitor, visit_generic_arg, &data.args);
454             walk_list!(visitor, visit_assoc_ty_constraint, &data.constraints);
455         }
456         GenericArgs::Parenthesized(ref data) => {
457             walk_list!(visitor, visit_ty, &data.inputs);
458             walk_fn_ret_ty(visitor, &data.output);
459         }
460     }
461 }
462
463 pub fn walk_assoc_ty_constraint<'a, V: Visitor<'a>>(
464     visitor: &mut V,
465     constraint: &'a AssocTyConstraint,
466 ) {
467     visitor.visit_ident(constraint.ident);
468     match constraint.kind {
469         AssocTyConstraintKind::Equality { ref ty } => {
470             visitor.visit_ty(ty);
471         }
472         AssocTyConstraintKind::Bound { ref bounds } => {
473             walk_list!(visitor, visit_param_bound, bounds);
474         }
475     }
476 }
477
478 pub fn walk_pat<'a, V: Visitor<'a>>(visitor: &mut V, pattern: &'a Pat) {
479     match pattern.kind {
480         PatKind::TupleStruct(ref path, ref elems) => {
481             visitor.visit_path(path, pattern.id);
482             walk_list!(visitor, visit_pat, elems);
483         }
484         PatKind::Path(ref opt_qself, ref path) => {
485             if let Some(ref qself) = *opt_qself {
486                 visitor.visit_ty(&qself.ty);
487             }
488             visitor.visit_path(path, pattern.id)
489         }
490         PatKind::Struct(ref path, ref fields, _) => {
491             visitor.visit_path(path, pattern.id);
492             walk_list!(visitor, visit_field_pattern, fields);
493         }
494         PatKind::Box(ref subpattern)
495         | PatKind::Ref(ref subpattern, _)
496         | PatKind::Paren(ref subpattern) => visitor.visit_pat(subpattern),
497         PatKind::Ident(_, ident, ref optional_subpattern) => {
498             visitor.visit_ident(ident);
499             walk_list!(visitor, visit_pat, optional_subpattern);
500         }
501         PatKind::Lit(ref expression) => visitor.visit_expr(expression),
502         PatKind::Range(ref lower_bound, ref upper_bound, _) => {
503             walk_list!(visitor, visit_expr, lower_bound);
504             walk_list!(visitor, visit_expr, upper_bound);
505         }
506         PatKind::Wild | PatKind::Rest => {}
507         PatKind::Tuple(ref elems) | PatKind::Slice(ref elems) | PatKind::Or(ref elems) => {
508             walk_list!(visitor, visit_pat, elems);
509         }
510         PatKind::Mac(ref mac) => visitor.visit_mac(mac),
511     }
512 }
513
514 pub fn walk_foreign_item<'a, V: Visitor<'a>>(visitor: &mut V, foreign_item: &'a ForeignItem) {
515     visitor.visit_vis(&foreign_item.vis);
516     visitor.visit_ident(foreign_item.ident);
517
518     match foreign_item.kind {
519         ForeignItemKind::Fn(ref function_declaration, ref generics) => {
520             walk_fn_decl(visitor, function_declaration);
521             visitor.visit_generics(generics)
522         }
523         ForeignItemKind::Static(ref typ, _) => visitor.visit_ty(typ),
524         ForeignItemKind::Ty => (),
525         ForeignItemKind::Macro(ref mac) => visitor.visit_mac(mac),
526     }
527
528     walk_list!(visitor, visit_attribute, &foreign_item.attrs);
529 }
530
531 pub fn walk_global_asm<'a, V: Visitor<'a>>(_: &mut V, _: &'a GlobalAsm) {
532     // Empty!
533 }
534
535 pub fn walk_param_bound<'a, V: Visitor<'a>>(visitor: &mut V, bound: &'a GenericBound) {
536     match *bound {
537         GenericBound::Trait(ref typ, ref modifier) => visitor.visit_poly_trait_ref(typ, modifier),
538         GenericBound::Outlives(ref lifetime) => visitor.visit_lifetime(lifetime),
539     }
540 }
541
542 pub fn walk_generic_param<'a, V: Visitor<'a>>(visitor: &mut V, param: &'a GenericParam) {
543     visitor.visit_ident(param.ident);
544     walk_list!(visitor, visit_attribute, param.attrs.iter());
545     walk_list!(visitor, visit_param_bound, &param.bounds);
546     match param.kind {
547         GenericParamKind::Lifetime => (),
548         GenericParamKind::Type { ref default } => walk_list!(visitor, visit_ty, default),
549         GenericParamKind::Const { ref ty, .. } => visitor.visit_ty(ty),
550     }
551 }
552
553 pub fn walk_generics<'a, V: Visitor<'a>>(visitor: &mut V, generics: &'a Generics) {
554     walk_list!(visitor, visit_generic_param, &generics.params);
555     walk_list!(visitor, visit_where_predicate, &generics.where_clause.predicates);
556 }
557
558 pub fn walk_where_predicate<'a, V: Visitor<'a>>(visitor: &mut V, predicate: &'a WherePredicate) {
559     match *predicate {
560         WherePredicate::BoundPredicate(WhereBoundPredicate {
561             ref bounded_ty,
562             ref bounds,
563             ref bound_generic_params,
564             ..
565         }) => {
566             visitor.visit_ty(bounded_ty);
567             walk_list!(visitor, visit_param_bound, bounds);
568             walk_list!(visitor, visit_generic_param, bound_generic_params);
569         }
570         WherePredicate::RegionPredicate(WhereRegionPredicate {
571             ref lifetime, ref bounds, ..
572         }) => {
573             visitor.visit_lifetime(lifetime);
574             walk_list!(visitor, visit_param_bound, bounds);
575         }
576         WherePredicate::EqPredicate(WhereEqPredicate { ref lhs_ty, ref rhs_ty, .. }) => {
577             visitor.visit_ty(lhs_ty);
578             visitor.visit_ty(rhs_ty);
579         }
580     }
581 }
582
583 pub fn walk_fn_ret_ty<'a, V: Visitor<'a>>(visitor: &mut V, ret_ty: &'a FunctionRetTy) {
584     if let FunctionRetTy::Ty(ref output_ty) = *ret_ty {
585         visitor.visit_ty(output_ty)
586     }
587 }
588
589 pub fn walk_fn_decl<'a, V: Visitor<'a>>(visitor: &mut V, function_declaration: &'a FnDecl) {
590     for param in &function_declaration.inputs {
591         visitor.visit_param(param);
592     }
593     visitor.visit_fn_ret_ty(&function_declaration.output);
594 }
595
596 pub fn walk_fn<'a, V>(visitor: &mut V, kind: FnKind<'a>, declaration: &'a FnDecl, _span: Span)
597 where
598     V: Visitor<'a>,
599 {
600     match kind {
601         FnKind::ItemFn(_, header, _, body) => {
602             visitor.visit_fn_header(header);
603             walk_fn_decl(visitor, declaration);
604             visitor.visit_block(body);
605         }
606         FnKind::Method(_, sig, _, body) => {
607             visitor.visit_fn_header(&sig.header);
608             walk_fn_decl(visitor, declaration);
609             visitor.visit_block(body);
610         }
611         FnKind::Closure(body) => {
612             walk_fn_decl(visitor, declaration);
613             visitor.visit_expr(body);
614         }
615     }
616 }
617
618 pub fn walk_impl_item<'a, V: Visitor<'a>>(visitor: &mut V, item: &'a AssocItem) {
619     visitor.visit_assoc_item(item);
620 }
621
622 pub fn walk_trait_item<'a, V: Visitor<'a>>(visitor: &mut V, item: &'a AssocItem) {
623     visitor.visit_assoc_item(item);
624 }
625
626 pub fn walk_assoc_item<'a, V: Visitor<'a>>(visitor: &mut V, item: &'a AssocItem) {
627     visitor.visit_vis(&item.vis);
628     visitor.visit_ident(item.ident);
629     walk_list!(visitor, visit_attribute, &item.attrs);
630     visitor.visit_generics(&item.generics);
631     match item.kind {
632         AssocItemKind::Const(ref ty, ref expr) => {
633             visitor.visit_ty(ty);
634             walk_list!(visitor, visit_expr, expr);
635         }
636         AssocItemKind::Fn(ref sig, None) => {
637             visitor.visit_fn_header(&sig.header);
638             walk_fn_decl(visitor, &sig.decl);
639         }
640         AssocItemKind::Fn(ref sig, Some(ref body)) => {
641             visitor.visit_fn(
642                 FnKind::Method(item.ident, sig, &item.vis, body),
643                 &sig.decl,
644                 item.span,
645                 item.id,
646             );
647         }
648         AssocItemKind::TyAlias(ref bounds, ref ty) => {
649             walk_list!(visitor, visit_param_bound, bounds);
650             walk_list!(visitor, visit_ty, ty);
651         }
652         AssocItemKind::Macro(ref mac) => {
653             visitor.visit_mac(mac);
654         }
655     }
656 }
657
658 pub fn walk_struct_def<'a, V: Visitor<'a>>(visitor: &mut V, struct_definition: &'a VariantData) {
659     walk_list!(visitor, visit_struct_field, struct_definition.fields());
660 }
661
662 pub fn walk_struct_field<'a, V: Visitor<'a>>(visitor: &mut V, struct_field: &'a StructField) {
663     visitor.visit_vis(&struct_field.vis);
664     if let Some(ident) = struct_field.ident {
665         visitor.visit_ident(ident);
666     }
667     visitor.visit_ty(&struct_field.ty);
668     walk_list!(visitor, visit_attribute, &struct_field.attrs);
669 }
670
671 pub fn walk_block<'a, V: Visitor<'a>>(visitor: &mut V, block: &'a Block) {
672     walk_list!(visitor, visit_stmt, &block.stmts);
673 }
674
675 pub fn walk_stmt<'a, V: Visitor<'a>>(visitor: &mut V, statement: &'a Stmt) {
676     match statement.kind {
677         StmtKind::Local(ref local) => visitor.visit_local(local),
678         StmtKind::Item(ref item) => visitor.visit_item(item),
679         StmtKind::Expr(ref expression) | StmtKind::Semi(ref expression) => {
680             visitor.visit_expr(expression)
681         }
682         StmtKind::Mac(ref mac) => {
683             let (ref mac, _, ref attrs) = **mac;
684             visitor.visit_mac(mac);
685             for attr in attrs.iter() {
686                 visitor.visit_attribute(attr);
687             }
688         }
689     }
690 }
691
692 pub fn walk_mac<'a, V: Visitor<'a>>(visitor: &mut V, mac: &'a Mac) {
693     visitor.visit_path(&mac.path, DUMMY_NODE_ID);
694 }
695
696 pub fn walk_anon_const<'a, V: Visitor<'a>>(visitor: &mut V, constant: &'a AnonConst) {
697     visitor.visit_expr(&constant.value);
698 }
699
700 pub fn walk_expr<'a, V: Visitor<'a>>(visitor: &mut V, expression: &'a Expr) {
701     walk_list!(visitor, visit_attribute, expression.attrs.iter());
702
703     match expression.kind {
704         ExprKind::Box(ref subexpression) => visitor.visit_expr(subexpression),
705         ExprKind::Array(ref subexpressions) => {
706             walk_list!(visitor, visit_expr, subexpressions);
707         }
708         ExprKind::Repeat(ref element, ref count) => {
709             visitor.visit_expr(element);
710             visitor.visit_anon_const(count)
711         }
712         ExprKind::Struct(ref path, ref fields, ref optional_base) => {
713             visitor.visit_path(path, expression.id);
714             walk_list!(visitor, visit_field, fields);
715             walk_list!(visitor, visit_expr, optional_base);
716         }
717         ExprKind::Tup(ref subexpressions) => {
718             walk_list!(visitor, visit_expr, subexpressions);
719         }
720         ExprKind::Call(ref callee_expression, ref arguments) => {
721             visitor.visit_expr(callee_expression);
722             walk_list!(visitor, visit_expr, arguments);
723         }
724         ExprKind::MethodCall(ref segment, ref arguments) => {
725             visitor.visit_path_segment(expression.span, segment);
726             walk_list!(visitor, visit_expr, arguments);
727         }
728         ExprKind::Binary(_, ref left_expression, ref right_expression) => {
729             visitor.visit_expr(left_expression);
730             visitor.visit_expr(right_expression)
731         }
732         ExprKind::AddrOf(_, _, ref subexpression) | ExprKind::Unary(_, ref subexpression) => {
733             visitor.visit_expr(subexpression)
734         }
735         ExprKind::Cast(ref subexpression, ref typ) | ExprKind::Type(ref subexpression, ref typ) => {
736             visitor.visit_expr(subexpression);
737             visitor.visit_ty(typ)
738         }
739         ExprKind::Let(ref pat, ref scrutinee) => {
740             visitor.visit_pat(pat);
741             visitor.visit_expr(scrutinee);
742         }
743         ExprKind::If(ref head_expression, ref if_block, ref optional_else) => {
744             visitor.visit_expr(head_expression);
745             visitor.visit_block(if_block);
746             walk_list!(visitor, visit_expr, optional_else);
747         }
748         ExprKind::While(ref subexpression, ref block, ref opt_label) => {
749             walk_list!(visitor, visit_label, opt_label);
750             visitor.visit_expr(subexpression);
751             visitor.visit_block(block);
752         }
753         ExprKind::ForLoop(ref pattern, ref subexpression, ref block, ref opt_label) => {
754             walk_list!(visitor, visit_label, opt_label);
755             visitor.visit_pat(pattern);
756             visitor.visit_expr(subexpression);
757             visitor.visit_block(block);
758         }
759         ExprKind::Loop(ref block, ref opt_label) => {
760             walk_list!(visitor, visit_label, opt_label);
761             visitor.visit_block(block);
762         }
763         ExprKind::Match(ref subexpression, ref arms) => {
764             visitor.visit_expr(subexpression);
765             walk_list!(visitor, visit_arm, arms);
766         }
767         ExprKind::Closure(_, _, _, ref function_declaration, ref body, _decl_span) => visitor
768             .visit_fn(FnKind::Closure(body), function_declaration, expression.span, expression.id),
769         ExprKind::Block(ref block, ref opt_label) => {
770             walk_list!(visitor, visit_label, opt_label);
771             visitor.visit_block(block);
772         }
773         ExprKind::Async(_, _, ref body) => {
774             visitor.visit_block(body);
775         }
776         ExprKind::Await(ref expr) => visitor.visit_expr(expr),
777         ExprKind::Assign(ref lhs, ref rhs, _) => {
778             visitor.visit_expr(lhs);
779             visitor.visit_expr(rhs);
780         }
781         ExprKind::AssignOp(_, ref left_expression, ref right_expression) => {
782             visitor.visit_expr(left_expression);
783             visitor.visit_expr(right_expression);
784         }
785         ExprKind::Field(ref subexpression, ident) => {
786             visitor.visit_expr(subexpression);
787             visitor.visit_ident(ident);
788         }
789         ExprKind::Index(ref main_expression, ref index_expression) => {
790             visitor.visit_expr(main_expression);
791             visitor.visit_expr(index_expression)
792         }
793         ExprKind::Range(ref start, ref end, _) => {
794             walk_list!(visitor, visit_expr, start);
795             walk_list!(visitor, visit_expr, end);
796         }
797         ExprKind::Path(ref maybe_qself, ref path) => {
798             if let Some(ref qself) = *maybe_qself {
799                 visitor.visit_ty(&qself.ty);
800             }
801             visitor.visit_path(path, expression.id)
802         }
803         ExprKind::Break(ref opt_label, ref opt_expr) => {
804             walk_list!(visitor, visit_label, opt_label);
805             walk_list!(visitor, visit_expr, opt_expr);
806         }
807         ExprKind::Continue(ref opt_label) => {
808             walk_list!(visitor, visit_label, opt_label);
809         }
810         ExprKind::Ret(ref optional_expression) => {
811             walk_list!(visitor, visit_expr, optional_expression);
812         }
813         ExprKind::Mac(ref mac) => visitor.visit_mac(mac),
814         ExprKind::Paren(ref subexpression) => visitor.visit_expr(subexpression),
815         ExprKind::InlineAsm(ref ia) => {
816             for &(_, ref input) in &ia.inputs {
817                 visitor.visit_expr(input)
818             }
819             for output in &ia.outputs {
820                 visitor.visit_expr(&output.expr)
821             }
822         }
823         ExprKind::Yield(ref optional_expression) => {
824             walk_list!(visitor, visit_expr, optional_expression);
825         }
826         ExprKind::Try(ref subexpression) => visitor.visit_expr(subexpression),
827         ExprKind::TryBlock(ref body) => visitor.visit_block(body),
828         ExprKind::Lit(_) | ExprKind::Err => {}
829     }
830
831     visitor.visit_expr_post(expression)
832 }
833
834 pub fn walk_param<'a, V: Visitor<'a>>(visitor: &mut V, param: &'a Param) {
835     walk_list!(visitor, visit_attribute, param.attrs.iter());
836     visitor.visit_pat(&param.pat);
837     visitor.visit_ty(&param.ty);
838 }
839
840 pub fn walk_arm<'a, V: Visitor<'a>>(visitor: &mut V, arm: &'a Arm) {
841     visitor.visit_pat(&arm.pat);
842     walk_list!(visitor, visit_expr, &arm.guard);
843     visitor.visit_expr(&arm.body);
844     walk_list!(visitor, visit_attribute, &arm.attrs);
845 }
846
847 pub fn walk_vis<'a, V: Visitor<'a>>(visitor: &mut V, vis: &'a Visibility) {
848     if let VisibilityKind::Restricted { ref path, id } = vis.node {
849         visitor.visit_path(path, id);
850     }
851 }
852
853 pub fn walk_attribute<'a, V: Visitor<'a>>(visitor: &mut V, attr: &'a Attribute) {
854     match attr.kind {
855         AttrKind::Normal(ref item) => walk_mac_args(visitor, &item.args),
856         AttrKind::DocComment(_) => {}
857     }
858 }
859
860 pub fn walk_mac_args<'a, V: Visitor<'a>>(visitor: &mut V, args: &'a MacArgs) {
861     match args {
862         MacArgs::Empty => {}
863         MacArgs::Delimited(_dspan, _delim, tokens) => visitor.visit_tts(tokens.clone()),
864         MacArgs::Eq(_eq_span, tokens) => visitor.visit_tts(tokens.clone()),
865     }
866 }
867
868 pub fn walk_tt<'a, V: Visitor<'a>>(visitor: &mut V, tt: TokenTree) {
869     match tt {
870         TokenTree::Token(token) => visitor.visit_token(token),
871         TokenTree::Delimited(_, _, tts) => visitor.visit_tts(tts),
872     }
873 }
874
875 pub fn walk_tts<'a, V: Visitor<'a>>(visitor: &mut V, tts: TokenStream) {
876     for tt in tts.trees() {
877         visitor.visit_tt(tt);
878     }
879 }