]> git.lizzy.rs Git - rust.git/blob - src/librustc/hir/intravisit.rs
Rollup merge of #54853 - davidtwco:issue-52663-missing-lifetime-suggestion-test,...
[rust.git] / src / librustc / hir / intravisit.rs
1 // Copyright 2012-2015 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 //! HIR walker for walking the contents of nodes.
12 //!
13 //! **For an overview of the visitor strategy, see the docs on the
14 //! `super::itemlikevisit::ItemLikeVisitor` trait.**
15 //!
16 //! If you have decided to use this visitor, here are some general
17 //! notes on how to do it:
18 //!
19 //! Each overridden visit method has full control over what
20 //! happens with its node, it can do its own traversal of the node's children,
21 //! call `intravisit::walk_*` to apply the default traversal algorithm, or prevent
22 //! deeper traversal by doing nothing.
23 //!
24 //! When visiting the HIR, the contents of nested items are NOT visited
25 //! by default. This is different from the AST visitor, which does a deep walk.
26 //! Hence this module is called `intravisit`; see the method `visit_nested_item`
27 //! for more details.
28 //!
29 //! Note: it is an important invariant that the default visitor walks
30 //! the body of a function in "execution order" - more concretely, if
31 //! we consider the reverse post-order (RPO) of the CFG implied by the HIR,
32 //! then a pre-order traversal of the HIR is consistent with the CFG RPO
33 //! on the *initial CFG point* of each HIR node, while a post-order traversal
34 //! of the HIR is consistent with the CFG RPO on each *final CFG point* of
35 //! each CFG node.
36 //!
37 //! One thing that follows is that if HIR node A always starts/ends executing
38 //! before HIR node B, then A appears in traversal pre/postorder before B,
39 //! respectively. (This follows from RPO respecting CFG domination).
40 //!
41 //! This order consistency is required in a few places in rustc, for
42 //! example generator inference, and possibly also HIR borrowck.
43
44 use syntax::ast::{NodeId, CRATE_NODE_ID, Ident, Name, Attribute};
45 use syntax_pos::Span;
46 use hir::*;
47 use hir::def::Def;
48 use hir::map::{self, Map};
49 use super::itemlikevisit::DeepVisitor;
50
51 use std::cmp;
52 use std::u32;
53
54 #[derive(Copy, Clone)]
55 pub enum FnKind<'a> {
56     /// #[xxx] pub async/const/extern "Abi" fn foo()
57     ItemFn(Name, &'a Generics, FnHeader, &'a Visibility, &'a [Attribute]),
58
59     /// fn foo(&self)
60     Method(Ident, &'a MethodSig, Option<&'a Visibility>, &'a [Attribute]),
61
62     /// |x, y| {}
63     Closure(&'a [Attribute]),
64 }
65
66 impl<'a> FnKind<'a> {
67     pub fn attrs(&self) -> &'a [Attribute] {
68         match *self {
69             FnKind::ItemFn(.., attrs) => attrs,
70             FnKind::Method(.., attrs) => attrs,
71             FnKind::Closure(attrs) => attrs,
72         }
73     }
74 }
75
76 /// Specifies what nested things a visitor wants to visit. The most
77 /// common choice is `OnlyBodies`, which will cause the visitor to
78 /// visit fn bodies for fns that it encounters, but skip over nested
79 /// item-like things.
80 ///
81 /// See the comments on `ItemLikeVisitor` for more details on the overall
82 /// visit strategy.
83 pub enum NestedVisitorMap<'this, 'tcx: 'this> {
84     /// Do not visit any nested things. When you add a new
85     /// "non-nested" thing, you will want to audit such uses to see if
86     /// they remain valid.
87     ///
88     /// Use this if you are only walking some particular kind of tree
89     /// (i.e., a type, or fn signature) and you don't want to thread a
90     /// HIR map around.
91     None,
92
93     /// Do not visit nested item-like things, but visit nested things
94     /// that are inside of an item-like.
95     ///
96     /// **This is the most common choice.** A very common pattern is
97     /// to use `visit_all_item_likes()` as an outer loop,
98     /// and to have the visitor that visits the contents of each item
99     /// using this setting.
100     OnlyBodies(&'this Map<'tcx>),
101
102     /// Visit all nested things, including item-likes.
103     ///
104     /// **This is an unusual choice.** It is used when you want to
105     /// process everything within their lexical context. Typically you
106     /// kick off the visit by doing `walk_krate()`.
107     All(&'this Map<'tcx>),
108 }
109
110 impl<'this, 'tcx> NestedVisitorMap<'this, 'tcx> {
111     /// Returns the map to use for an "intra item-like" thing (if any).
112     /// e.g., function body.
113     pub fn intra(self) -> Option<&'this Map<'tcx>> {
114         match self {
115             NestedVisitorMap::None => None,
116             NestedVisitorMap::OnlyBodies(map) => Some(map),
117             NestedVisitorMap::All(map) => Some(map),
118         }
119     }
120
121     /// Returns the map to use for an "item-like" thing (if any).
122     /// e.g., item, impl-item.
123     pub fn inter(self) -> Option<&'this Map<'tcx>> {
124         match self {
125             NestedVisitorMap::None => None,
126             NestedVisitorMap::OnlyBodies(_) => None,
127             NestedVisitorMap::All(map) => Some(map),
128         }
129     }
130 }
131
132 /// Each method of the Visitor trait is a hook to be potentially
133 /// overridden.  Each method's default implementation recursively visits
134 /// the substructure of the input via the corresponding `walk` method;
135 /// e.g. the `visit_mod` method by default calls `intravisit::walk_mod`.
136 ///
137 /// Note that this visitor does NOT visit nested items by default
138 /// (this is why the module is called `intravisit`, to distinguish it
139 /// from the AST's `visit` module, which acts differently). If you
140 /// simply want to visit all items in the crate in some order, you
141 /// should call `Crate::visit_all_items`. Otherwise, see the comment
142 /// on `visit_nested_item` for details on how to visit nested items.
143 ///
144 /// If you want to ensure that your code handles every variant
145 /// explicitly, you need to override each method.  (And you also need
146 /// to monitor future changes to `Visitor` in case a new method with a
147 /// new default implementation gets introduced.)
148 pub trait Visitor<'v> : Sized {
149     ///////////////////////////////////////////////////////////////////////////
150     // Nested items.
151
152     /// The default versions of the `visit_nested_XXX` routines invoke
153     /// this method to get a map to use. By selecting an enum variant,
154     /// you control which kinds of nested HIR are visited; see
155     /// `NestedVisitorMap` for details. By "nested HIR", we are
156     /// referring to bits of HIR that are not directly embedded within
157     /// one another but rather indirectly, through a table in the
158     /// crate. This is done to control dependencies during incremental
159     /// compilation: the non-inline bits of HIR can be tracked and
160     /// hashed separately.
161     ///
162     /// **If for some reason you want the nested behavior, but don't
163     /// have a `Map` at your disposal:** then you should override the
164     /// `visit_nested_XXX` methods, and override this method to
165     /// `panic!()`. This way, if a new `visit_nested_XXX` variant is
166     /// added in the future, we will see the panic in your code and
167     /// fix it appropriately.
168     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'v>;
169
170     /// Invoked when a nested item is encountered. By default does
171     /// nothing unless you override `nested_visit_map` to return
172     /// `Some(_)`, in which case it will walk the item. **You probably
173     /// don't want to override this method** -- instead, override
174     /// `nested_visit_map` or use the "shallow" or "deep" visit
175     /// patterns described on `itemlikevisit::ItemLikeVisitor`. The only
176     /// reason to override this method is if you want a nested pattern
177     /// but cannot supply a `Map`; see `nested_visit_map` for advice.
178     #[allow(unused_variables)]
179     fn visit_nested_item(&mut self, id: ItemId) {
180         let opt_item = self.nested_visit_map().inter().map(|map| map.expect_item(id.id));
181         if let Some(item) = opt_item {
182             self.visit_item(item);
183         }
184     }
185
186     /// Like `visit_nested_item()`, but for trait items. See
187     /// `visit_nested_item()` for advice on when to override this
188     /// method.
189     #[allow(unused_variables)]
190     fn visit_nested_trait_item(&mut self, id: TraitItemId) {
191         let opt_item = self.nested_visit_map().inter().map(|map| map.trait_item(id));
192         if let Some(item) = opt_item {
193             self.visit_trait_item(item);
194         }
195     }
196
197     /// Like `visit_nested_item()`, but for impl items. See
198     /// `visit_nested_item()` for advice on when to override this
199     /// method.
200     #[allow(unused_variables)]
201     fn visit_nested_impl_item(&mut self, id: ImplItemId) {
202         let opt_item = self.nested_visit_map().inter().map(|map| map.impl_item(id));
203         if let Some(item) = opt_item {
204             self.visit_impl_item(item);
205         }
206     }
207
208     /// Invoked to visit the body of a function, method or closure. Like
209     /// visit_nested_item, does nothing by default unless you override
210     /// `nested_visit_map` to return `Some(_)`, in which case it will walk the
211     /// body.
212     fn visit_nested_body(&mut self, id: BodyId) {
213         let opt_body = self.nested_visit_map().intra().map(|map| map.body(id));
214         if let Some(body) = opt_body {
215             self.visit_body(body);
216         }
217     }
218
219     /// Visit the top-level item and (optionally) nested items / impl items. See
220     /// `visit_nested_item` for details.
221     fn visit_item(&mut self, i: &'v Item) {
222         walk_item(self, i)
223     }
224
225     fn visit_body(&mut self, b: &'v Body) {
226         walk_body(self, b);
227     }
228
229     /// When invoking `visit_all_item_likes()`, you need to supply an
230     /// item-like visitor.  This method converts a "intra-visit"
231     /// visitor into an item-like visitor that walks the entire tree.
232     /// If you use this, you probably don't want to process the
233     /// contents of nested item-like things, since the outer loop will
234     /// visit them as well.
235     fn as_deep_visitor<'s>(&'s mut self) -> DeepVisitor<'s, Self> {
236         DeepVisitor::new(self)
237     }
238
239     ///////////////////////////////////////////////////////////////////////////
240
241     fn visit_id(&mut self, _node_id: NodeId) {
242         // Nothing to do.
243     }
244     fn visit_def_mention(&mut self, _def: Def) {
245         // Nothing to do.
246     }
247     fn visit_name(&mut self, _span: Span, _name: Name) {
248         // Nothing to do.
249     }
250     fn visit_ident(&mut self, ident: Ident) {
251         walk_ident(self, ident)
252     }
253     fn visit_mod(&mut self, m: &'v Mod, _s: Span, n: NodeId) {
254         walk_mod(self, m, n)
255     }
256     fn visit_foreign_item(&mut self, i: &'v ForeignItem) {
257         walk_foreign_item(self, i)
258     }
259     fn visit_local(&mut self, l: &'v Local) {
260         walk_local(self, l)
261     }
262     fn visit_block(&mut self, b: &'v Block) {
263         walk_block(self, b)
264     }
265     fn visit_stmt(&mut self, s: &'v Stmt) {
266         walk_stmt(self, s)
267     }
268     fn visit_arm(&mut self, a: &'v Arm) {
269         walk_arm(self, a)
270     }
271     fn visit_pat(&mut self, p: &'v Pat) {
272         walk_pat(self, p)
273     }
274     fn visit_decl(&mut self, d: &'v Decl) {
275         walk_decl(self, d)
276     }
277     fn visit_anon_const(&mut self, c: &'v AnonConst) {
278         walk_anon_const(self, c)
279     }
280     fn visit_expr(&mut self, ex: &'v Expr) {
281         walk_expr(self, ex)
282     }
283     fn visit_ty(&mut self, t: &'v Ty) {
284         walk_ty(self, t)
285     }
286     fn visit_generic_param(&mut self, p: &'v GenericParam) {
287         walk_generic_param(self, p)
288     }
289     fn visit_generics(&mut self, g: &'v Generics) {
290         walk_generics(self, g)
291     }
292     fn visit_where_predicate(&mut self, predicate: &'v WherePredicate) {
293         walk_where_predicate(self, predicate)
294     }
295     fn visit_fn_decl(&mut self, fd: &'v FnDecl) {
296         walk_fn_decl(self, fd)
297     }
298     fn visit_fn(&mut self, fk: FnKind<'v>, fd: &'v FnDecl, b: BodyId, s: Span, id: NodeId) {
299         walk_fn(self, fk, fd, b, s, id)
300     }
301     fn visit_trait_item(&mut self, ti: &'v TraitItem) {
302         walk_trait_item(self, ti)
303     }
304     fn visit_trait_item_ref(&mut self, ii: &'v TraitItemRef) {
305         walk_trait_item_ref(self, ii)
306     }
307     fn visit_impl_item(&mut self, ii: &'v ImplItem) {
308         walk_impl_item(self, ii)
309     }
310     fn visit_impl_item_ref(&mut self, ii: &'v ImplItemRef) {
311         walk_impl_item_ref(self, ii)
312     }
313     fn visit_trait_ref(&mut self, t: &'v TraitRef) {
314         walk_trait_ref(self, t)
315     }
316     fn visit_param_bound(&mut self, bounds: &'v GenericBound) {
317         walk_param_bound(self, bounds)
318     }
319     fn visit_poly_trait_ref(&mut self, t: &'v PolyTraitRef, m: TraitBoundModifier) {
320         walk_poly_trait_ref(self, t, m)
321     }
322     fn visit_variant_data(&mut self,
323                           s: &'v VariantData,
324                           _: Name,
325                           _: &'v Generics,
326                           _parent_id: NodeId,
327                           _: Span) {
328         walk_struct_def(self, s)
329     }
330     fn visit_struct_field(&mut self, s: &'v StructField) {
331         walk_struct_field(self, s)
332     }
333     fn visit_enum_def(&mut self,
334                       enum_definition: &'v EnumDef,
335                       generics: &'v Generics,
336                       item_id: NodeId,
337                       _: Span) {
338         walk_enum_def(self, enum_definition, generics, item_id)
339     }
340     fn visit_variant(&mut self, v: &'v Variant, g: &'v Generics, item_id: NodeId) {
341         walk_variant(self, v, g, item_id)
342     }
343     fn visit_label(&mut self, label: &'v Label) {
344         walk_label(self, label)
345     }
346     fn visit_generic_arg(&mut self, generic_arg: &'v GenericArg) {
347         match generic_arg {
348             GenericArg::Lifetime(lt) => self.visit_lifetime(lt),
349             GenericArg::Type(ty) => self.visit_ty(ty),
350         }
351     }
352     fn visit_lifetime(&mut self, lifetime: &'v Lifetime) {
353         walk_lifetime(self, lifetime)
354     }
355     fn visit_qpath(&mut self, qpath: &'v QPath, id: HirId, span: Span) {
356         walk_qpath(self, qpath, id, span)
357     }
358     fn visit_path(&mut self, path: &'v Path, _id: HirId) {
359         walk_path(self, path)
360     }
361     fn visit_path_segment(&mut self, path_span: Span, path_segment: &'v PathSegment) {
362         walk_path_segment(self, path_span, path_segment)
363     }
364     fn visit_generic_args(&mut self, path_span: Span, generic_args: &'v GenericArgs) {
365         walk_generic_args(self, path_span, generic_args)
366     }
367     fn visit_assoc_type_binding(&mut self, type_binding: &'v TypeBinding) {
368         walk_assoc_type_binding(self, type_binding)
369     }
370     fn visit_attribute(&mut self, _attr: &'v Attribute) {
371     }
372     fn visit_macro_def(&mut self, macro_def: &'v MacroDef) {
373         walk_macro_def(self, macro_def)
374     }
375     fn visit_vis(&mut self, vis: &'v Visibility) {
376         walk_vis(self, vis)
377     }
378     fn visit_associated_item_kind(&mut self, kind: &'v AssociatedItemKind) {
379         walk_associated_item_kind(self, kind);
380     }
381     fn visit_defaultness(&mut self, defaultness: &'v Defaultness) {
382         walk_defaultness(self, defaultness);
383     }
384 }
385
386 /// Walks the contents of a crate. See also `Crate::visit_all_items`.
387 pub fn walk_crate<'v, V: Visitor<'v>>(visitor: &mut V, krate: &'v Crate) {
388     visitor.visit_mod(&krate.module, krate.span, CRATE_NODE_ID);
389     walk_list!(visitor, visit_attribute, &krate.attrs);
390     walk_list!(visitor, visit_macro_def, &krate.exported_macros);
391 }
392
393 pub fn walk_macro_def<'v, V: Visitor<'v>>(visitor: &mut V, macro_def: &'v MacroDef) {
394     visitor.visit_id(macro_def.id);
395     visitor.visit_name(macro_def.span, macro_def.name);
396     walk_list!(visitor, visit_attribute, &macro_def.attrs);
397 }
398
399 pub fn walk_mod<'v, V: Visitor<'v>>(visitor: &mut V, module: &'v Mod, mod_node_id: NodeId) {
400     visitor.visit_id(mod_node_id);
401     for &item_id in &module.item_ids {
402         visitor.visit_nested_item(item_id);
403     }
404 }
405
406 pub fn walk_body<'v, V: Visitor<'v>>(visitor: &mut V, body: &'v Body) {
407     for argument in &body.arguments {
408         visitor.visit_id(argument.id);
409         visitor.visit_pat(&argument.pat);
410     }
411     visitor.visit_expr(&body.value);
412 }
413
414 pub fn walk_local<'v, V: Visitor<'v>>(visitor: &mut V, local: &'v Local) {
415     // Intentionally visiting the expr first - the initialization expr
416     // dominates the local's definition.
417     walk_list!(visitor, visit_expr, &local.init);
418     walk_list!(visitor, visit_attribute, local.attrs.iter());
419     visitor.visit_id(local.id);
420     visitor.visit_pat(&local.pat);
421     walk_list!(visitor, visit_ty, &local.ty);
422 }
423
424 pub fn walk_ident<'v, V: Visitor<'v>>(visitor: &mut V, ident: Ident) {
425     visitor.visit_name(ident.span, ident.name);
426 }
427
428 pub fn walk_label<'v, V: Visitor<'v>>(visitor: &mut V, label: &'v Label) {
429     visitor.visit_ident(label.ident);
430 }
431
432 pub fn walk_lifetime<'v, V: Visitor<'v>>(visitor: &mut V, lifetime: &'v Lifetime) {
433     visitor.visit_id(lifetime.id);
434     match lifetime.name {
435         LifetimeName::Param(ParamName::Plain(ident)) => {
436             visitor.visit_ident(ident);
437         }
438         LifetimeName::Param(ParamName::Fresh(_)) |
439         LifetimeName::Static |
440         LifetimeName::Implicit |
441         LifetimeName::Underscore => {}
442     }
443 }
444
445 pub fn walk_poly_trait_ref<'v, V>(visitor: &mut V,
446                                   trait_ref: &'v PolyTraitRef,
447                                   _modifier: TraitBoundModifier)
448     where V: Visitor<'v>
449 {
450     walk_list!(visitor, visit_generic_param, &trait_ref.bound_generic_params);
451     visitor.visit_trait_ref(&trait_ref.trait_ref);
452 }
453
454 pub fn walk_trait_ref<'v, V>(visitor: &mut V, trait_ref: &'v TraitRef)
455     where V: Visitor<'v>
456 {
457     visitor.visit_id(trait_ref.ref_id);
458     visitor.visit_path(&trait_ref.path, trait_ref.hir_ref_id)
459 }
460
461 pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item) {
462     visitor.visit_vis(&item.vis);
463     visitor.visit_name(item.span, item.name);
464     match item.node {
465         ItemKind::ExternCrate(orig_name) => {
466             visitor.visit_id(item.id);
467             if let Some(orig_name) = orig_name {
468                 visitor.visit_name(item.span, orig_name);
469             }
470         }
471         ItemKind::Use(ref path, _) => {
472             visitor.visit_id(item.id);
473             visitor.visit_path(path, item.hir_id);
474         }
475         ItemKind::Static(ref typ, _, body) |
476         ItemKind::Const(ref typ, body) => {
477             visitor.visit_id(item.id);
478             visitor.visit_ty(typ);
479             visitor.visit_nested_body(body);
480         }
481         ItemKind::Fn(ref declaration, header, ref generics, body_id) => {
482             visitor.visit_fn(FnKind::ItemFn(item.name,
483                                             generics,
484                                             header,
485                                             &item.vis,
486                                             &item.attrs),
487                              declaration,
488                              body_id,
489                              item.span,
490                              item.id)
491         }
492         ItemKind::Mod(ref module) => {
493             // visit_mod() takes care of visiting the Item's NodeId
494             visitor.visit_mod(module, item.span, item.id)
495         }
496         ItemKind::ForeignMod(ref foreign_module) => {
497             visitor.visit_id(item.id);
498             walk_list!(visitor, visit_foreign_item, &foreign_module.items);
499         }
500         ItemKind::GlobalAsm(_) => {
501             visitor.visit_id(item.id);
502         }
503         ItemKind::Ty(ref typ, ref type_parameters) => {
504             visitor.visit_id(item.id);
505             visitor.visit_ty(typ);
506             visitor.visit_generics(type_parameters)
507         }
508         ItemKind::Existential(ExistTy {ref generics, ref bounds, impl_trait_fn}) => {
509             visitor.visit_id(item.id);
510             walk_generics(visitor, generics);
511             walk_list!(visitor, visit_param_bound, bounds);
512             if let Some(impl_trait_fn) = impl_trait_fn {
513                 visitor.visit_def_mention(Def::Fn(impl_trait_fn))
514             }
515         }
516         ItemKind::Enum(ref enum_definition, ref type_parameters) => {
517             visitor.visit_generics(type_parameters);
518             // visit_enum_def() takes care of visiting the Item's NodeId
519             visitor.visit_enum_def(enum_definition, type_parameters, item.id, item.span)
520         }
521         ItemKind::Impl(
522             ..,
523             ref type_parameters,
524             ref opt_trait_reference,
525             ref typ,
526             ref impl_item_refs
527         ) => {
528             visitor.visit_id(item.id);
529             visitor.visit_generics(type_parameters);
530             walk_list!(visitor, visit_trait_ref, opt_trait_reference);
531             visitor.visit_ty(typ);
532             walk_list!(visitor, visit_impl_item_ref, impl_item_refs);
533         }
534         ItemKind::Struct(ref struct_definition, ref generics) |
535         ItemKind::Union(ref struct_definition, ref generics) => {
536             visitor.visit_generics(generics);
537             visitor.visit_id(item.id);
538             visitor.visit_variant_data(struct_definition, item.name, generics, item.id, item.span);
539         }
540         ItemKind::Trait(.., ref generics, ref bounds, ref trait_item_refs) => {
541             visitor.visit_id(item.id);
542             visitor.visit_generics(generics);
543             walk_list!(visitor, visit_param_bound, bounds);
544             walk_list!(visitor, visit_trait_item_ref, trait_item_refs);
545         }
546         ItemKind::TraitAlias(ref generics, ref bounds) => {
547             visitor.visit_id(item.id);
548             visitor.visit_generics(generics);
549             walk_list!(visitor, visit_param_bound, bounds);
550         }
551     }
552     walk_list!(visitor, visit_attribute, &item.attrs);
553 }
554
555 pub fn walk_enum_def<'v, V: Visitor<'v>>(visitor: &mut V,
556                                          enum_definition: &'v EnumDef,
557                                          generics: &'v Generics,
558                                          item_id: NodeId) {
559     visitor.visit_id(item_id);
560     walk_list!(visitor,
561                visit_variant,
562                &enum_definition.variants,
563                generics,
564                item_id);
565 }
566
567 pub fn walk_variant<'v, V: Visitor<'v>>(visitor: &mut V,
568                                         variant: &'v Variant,
569                                         generics: &'v Generics,
570                                         parent_item_id: NodeId) {
571     visitor.visit_name(variant.span, variant.node.name);
572     visitor.visit_variant_data(&variant.node.data,
573                                variant.node.name,
574                                generics,
575                                parent_item_id,
576                                variant.span);
577     walk_list!(visitor, visit_anon_const, &variant.node.disr_expr);
578     walk_list!(visitor, visit_attribute, &variant.node.attrs);
579 }
580
581 pub fn walk_ty<'v, V: Visitor<'v>>(visitor: &mut V, typ: &'v Ty) {
582     visitor.visit_id(typ.id);
583
584     match typ.node {
585         TyKind::Slice(ref ty) => {
586             visitor.visit_ty(ty)
587         }
588         TyKind::Ptr(ref mutable_type) => {
589             visitor.visit_ty(&mutable_type.ty)
590         }
591         TyKind::Rptr(ref lifetime, ref mutable_type) => {
592             visitor.visit_lifetime(lifetime);
593             visitor.visit_ty(&mutable_type.ty)
594         }
595         TyKind::Never => {},
596         TyKind::Tup(ref tuple_element_types) => {
597             walk_list!(visitor, visit_ty, tuple_element_types);
598         }
599         TyKind::BareFn(ref function_declaration) => {
600             walk_list!(visitor, visit_generic_param, &function_declaration.generic_params);
601             visitor.visit_fn_decl(&function_declaration.decl);
602         }
603         TyKind::Path(ref qpath) => {
604             visitor.visit_qpath(qpath, typ.hir_id, typ.span);
605         }
606         TyKind::Def(item_id, ref lifetimes) => {
607             visitor.visit_nested_item(item_id);
608             walk_list!(visitor, visit_generic_arg, lifetimes);
609         }
610         TyKind::Array(ref ty, ref length) => {
611             visitor.visit_ty(ty);
612             visitor.visit_anon_const(length)
613         }
614         TyKind::TraitObject(ref bounds, ref lifetime) => {
615             for bound in bounds {
616                 visitor.visit_poly_trait_ref(bound, TraitBoundModifier::None);
617             }
618             visitor.visit_lifetime(lifetime);
619         }
620         TyKind::Typeof(ref expression) => {
621             visitor.visit_anon_const(expression)
622         }
623         TyKind::Infer | TyKind::Err => {}
624     }
625 }
626
627 pub fn walk_qpath<'v, V: Visitor<'v>>(visitor: &mut V, qpath: &'v QPath, id: HirId, span: Span) {
628     match *qpath {
629         QPath::Resolved(ref maybe_qself, ref path) => {
630             if let Some(ref qself) = *maybe_qself {
631                 visitor.visit_ty(qself);
632             }
633             visitor.visit_path(path, id)
634         }
635         QPath::TypeRelative(ref qself, ref segment) => {
636             visitor.visit_ty(qself);
637             visitor.visit_path_segment(span, segment);
638         }
639     }
640 }
641
642 pub fn walk_path<'v, V: Visitor<'v>>(visitor: &mut V, path: &'v Path) {
643     visitor.visit_def_mention(path.def);
644     for segment in &path.segments {
645         visitor.visit_path_segment(path.span, segment);
646     }
647 }
648
649 pub fn walk_path_segment<'v, V: Visitor<'v>>(visitor: &mut V,
650                                              path_span: Span,
651                                              segment: &'v PathSegment) {
652     visitor.visit_ident(segment.ident);
653     if let Some(ref args) = segment.args {
654         visitor.visit_generic_args(path_span, args);
655     }
656 }
657
658 pub fn walk_generic_args<'v, V: Visitor<'v>>(visitor: &mut V,
659                                              _path_span: Span,
660                                              generic_args: &'v GenericArgs) {
661     walk_list!(visitor, visit_generic_arg, &generic_args.args);
662     walk_list!(visitor, visit_assoc_type_binding, &generic_args.bindings);
663 }
664
665 pub fn walk_assoc_type_binding<'v, V: Visitor<'v>>(visitor: &mut V,
666                                                    type_binding: &'v TypeBinding) {
667     visitor.visit_id(type_binding.id);
668     visitor.visit_ident(type_binding.ident);
669     visitor.visit_ty(&type_binding.ty);
670 }
671
672 pub fn walk_pat<'v, V: Visitor<'v>>(visitor: &mut V, pattern: &'v Pat) {
673     visitor.visit_id(pattern.id);
674     match pattern.node {
675         PatKind::TupleStruct(ref qpath, ref children, _) => {
676             visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
677             walk_list!(visitor, visit_pat, children);
678         }
679         PatKind::Path(ref qpath) => {
680             visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
681         }
682         PatKind::Struct(ref qpath, ref fields, _) => {
683             visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
684             for field in fields {
685                 visitor.visit_id(field.node.id);
686                 visitor.visit_ident(field.node.ident);
687                 visitor.visit_pat(&field.node.pat)
688             }
689         }
690         PatKind::Tuple(ref tuple_elements, _) => {
691             walk_list!(visitor, visit_pat, tuple_elements);
692         }
693         PatKind::Box(ref subpattern) |
694         PatKind::Ref(ref subpattern, _) => {
695             visitor.visit_pat(subpattern)
696         }
697         PatKind::Binding(_, canonical_id, ident, ref optional_subpattern) => {
698             visitor.visit_def_mention(Def::Local(canonical_id));
699             visitor.visit_ident(ident);
700             walk_list!(visitor, visit_pat, optional_subpattern);
701         }
702         PatKind::Lit(ref expression) => visitor.visit_expr(expression),
703         PatKind::Range(ref lower_bound, ref upper_bound, _) => {
704             visitor.visit_expr(lower_bound);
705             visitor.visit_expr(upper_bound)
706         }
707         PatKind::Wild => (),
708         PatKind::Slice(ref prepatterns, ref slice_pattern, ref postpatterns) => {
709             walk_list!(visitor, visit_pat, prepatterns);
710             walk_list!(visitor, visit_pat, slice_pattern);
711             walk_list!(visitor, visit_pat, postpatterns);
712         }
713     }
714 }
715
716 pub fn walk_foreign_item<'v, V: Visitor<'v>>(visitor: &mut V, foreign_item: &'v ForeignItem) {
717     visitor.visit_id(foreign_item.id);
718     visitor.visit_vis(&foreign_item.vis);
719     visitor.visit_name(foreign_item.span, foreign_item.name);
720
721     match foreign_item.node {
722         ForeignItemKind::Fn(ref function_declaration, ref param_names, ref generics) => {
723             visitor.visit_generics(generics);
724             visitor.visit_fn_decl(function_declaration);
725             for &param_name in param_names {
726                 visitor.visit_ident(param_name);
727             }
728         }
729         ForeignItemKind::Static(ref typ, _) => visitor.visit_ty(typ),
730         ForeignItemKind::Type => (),
731     }
732
733     walk_list!(visitor, visit_attribute, &foreign_item.attrs);
734 }
735
736 pub fn walk_param_bound<'v, V: Visitor<'v>>(visitor: &mut V, bound: &'v GenericBound) {
737     match *bound {
738         GenericBound::Trait(ref typ, modifier) => {
739             visitor.visit_poly_trait_ref(typ, modifier);
740         }
741         GenericBound::Outlives(ref lifetime) => visitor.visit_lifetime(lifetime),
742     }
743 }
744
745 pub fn walk_generic_param<'v, V: Visitor<'v>>(visitor: &mut V, param: &'v GenericParam) {
746     visitor.visit_id(param.id);
747     walk_list!(visitor, visit_attribute, &param.attrs);
748     match param.name {
749         ParamName::Plain(ident) => visitor.visit_ident(ident),
750         ParamName::Fresh(_) => {}
751     }
752     match param.kind {
753         GenericParamKind::Lifetime { .. } => {}
754         GenericParamKind::Type { ref default, .. } => walk_list!(visitor, visit_ty, default),
755     }
756     walk_list!(visitor, visit_param_bound, &param.bounds);
757 }
758
759 pub fn walk_generics<'v, V: Visitor<'v>>(visitor: &mut V, generics: &'v Generics) {
760     walk_list!(visitor, visit_generic_param, &generics.params);
761     visitor.visit_id(generics.where_clause.id);
762     walk_list!(visitor, visit_where_predicate, &generics.where_clause.predicates);
763 }
764
765 pub fn walk_where_predicate<'v, V: Visitor<'v>>(
766     visitor: &mut V,
767     predicate: &'v WherePredicate)
768 {
769     match predicate {
770         &WherePredicate::BoundPredicate(WhereBoundPredicate{ref bounded_ty,
771                                                             ref bounds,
772                                                             ref bound_generic_params,
773                                                             ..}) => {
774             visitor.visit_ty(bounded_ty);
775             walk_list!(visitor, visit_param_bound, bounds);
776             walk_list!(visitor, visit_generic_param, bound_generic_params);
777         }
778         &WherePredicate::RegionPredicate(WhereRegionPredicate{ref lifetime,
779                                                               ref bounds,
780                                                               ..}) => {
781             visitor.visit_lifetime(lifetime);
782             walk_list!(visitor, visit_param_bound, bounds);
783         }
784         &WherePredicate::EqPredicate(WhereEqPredicate{id,
785                                                       ref lhs_ty,
786                                                       ref rhs_ty,
787                                                       ..}) => {
788             visitor.visit_id(id);
789             visitor.visit_ty(lhs_ty);
790             visitor.visit_ty(rhs_ty);
791         }
792     }
793 }
794
795 pub fn walk_fn_ret_ty<'v, V: Visitor<'v>>(visitor: &mut V, ret_ty: &'v FunctionRetTy) {
796     if let Return(ref output_ty) = *ret_ty {
797         visitor.visit_ty(output_ty)
798     }
799 }
800
801 pub fn walk_fn_decl<'v, V: Visitor<'v>>(visitor: &mut V, function_declaration: &'v FnDecl) {
802     for ty in &function_declaration.inputs {
803         visitor.visit_ty(ty)
804     }
805     walk_fn_ret_ty(visitor, &function_declaration.output)
806 }
807
808 pub fn walk_fn_kind<'v, V: Visitor<'v>>(visitor: &mut V, function_kind: FnKind<'v>) {
809     match function_kind {
810         FnKind::ItemFn(_, generics, ..) => {
811             visitor.visit_generics(generics);
812         }
813         FnKind::Method(..) |
814         FnKind::Closure(_) => {}
815     }
816 }
817
818 pub fn walk_fn<'v, V: Visitor<'v>>(visitor: &mut V,
819                                    function_kind: FnKind<'v>,
820                                    function_declaration: &'v FnDecl,
821                                    body_id: BodyId,
822                                    _span: Span,
823                                    id: NodeId) {
824     visitor.visit_id(id);
825     visitor.visit_fn_decl(function_declaration);
826     walk_fn_kind(visitor, function_kind);
827     visitor.visit_nested_body(body_id)
828 }
829
830 pub fn walk_trait_item<'v, V: Visitor<'v>>(visitor: &mut V, trait_item: &'v TraitItem) {
831     visitor.visit_ident(trait_item.ident);
832     walk_list!(visitor, visit_attribute, &trait_item.attrs);
833     visitor.visit_generics(&trait_item.generics);
834     match trait_item.node {
835         TraitItemKind::Const(ref ty, default) => {
836             visitor.visit_id(trait_item.id);
837             visitor.visit_ty(ty);
838             walk_list!(visitor, visit_nested_body, default);
839         }
840         TraitItemKind::Method(ref sig, TraitMethod::Required(ref param_names)) => {
841             visitor.visit_id(trait_item.id);
842             visitor.visit_fn_decl(&sig.decl);
843             for &param_name in param_names {
844                 visitor.visit_ident(param_name);
845             }
846         }
847         TraitItemKind::Method(ref sig, TraitMethod::Provided(body_id)) => {
848             visitor.visit_fn(FnKind::Method(trait_item.ident,
849                                             sig,
850                                             None,
851                                             &trait_item.attrs),
852                              &sig.decl,
853                              body_id,
854                              trait_item.span,
855                              trait_item.id);
856         }
857         TraitItemKind::Type(ref bounds, ref default) => {
858             visitor.visit_id(trait_item.id);
859             walk_list!(visitor, visit_param_bound, bounds);
860             walk_list!(visitor, visit_ty, default);
861         }
862     }
863 }
864
865 pub fn walk_trait_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, trait_item_ref: &'v TraitItemRef) {
866     // NB: Deliberately force a compilation error if/when new fields are added.
867     let TraitItemRef { id, ident, ref kind, span: _, ref defaultness } = *trait_item_ref;
868     visitor.visit_nested_trait_item(id);
869     visitor.visit_ident(ident);
870     visitor.visit_associated_item_kind(kind);
871     visitor.visit_defaultness(defaultness);
872 }
873
874 pub fn walk_impl_item<'v, V: Visitor<'v>>(visitor: &mut V, impl_item: &'v ImplItem) {
875     // NB: Deliberately force a compilation error if/when new fields are added.
876     let ImplItem {
877         id: _,
878         hir_id: _,
879         ident,
880         ref vis,
881         ref defaultness,
882         ref attrs,
883         ref generics,
884         ref node,
885         span: _,
886     } = *impl_item;
887
888     visitor.visit_ident(ident);
889     visitor.visit_vis(vis);
890     visitor.visit_defaultness(defaultness);
891     walk_list!(visitor, visit_attribute, attrs);
892     visitor.visit_generics(generics);
893     match *node {
894         ImplItemKind::Const(ref ty, body) => {
895             visitor.visit_id(impl_item.id);
896             visitor.visit_ty(ty);
897             visitor.visit_nested_body(body);
898         }
899         ImplItemKind::Method(ref sig, body_id) => {
900             visitor.visit_fn(FnKind::Method(impl_item.ident,
901                                             sig,
902                                             Some(&impl_item.vis),
903                                             &impl_item.attrs),
904                              &sig.decl,
905                              body_id,
906                              impl_item.span,
907                              impl_item.id);
908         }
909         ImplItemKind::Type(ref ty) => {
910             visitor.visit_id(impl_item.id);
911             visitor.visit_ty(ty);
912         }
913         ImplItemKind::Existential(ref bounds) => {
914             visitor.visit_id(impl_item.id);
915             walk_list!(visitor, visit_param_bound, bounds);
916         }
917     }
918 }
919
920 pub fn walk_impl_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, impl_item_ref: &'v ImplItemRef) {
921     // NB: Deliberately force a compilation error if/when new fields are added.
922     let ImplItemRef { id, ident, ref kind, span: _, ref vis, ref defaultness } = *impl_item_ref;
923     visitor.visit_nested_impl_item(id);
924     visitor.visit_ident(ident);
925     visitor.visit_associated_item_kind(kind);
926     visitor.visit_vis(vis);
927     visitor.visit_defaultness(defaultness);
928 }
929
930
931 pub fn walk_struct_def<'v, V: Visitor<'v>>(visitor: &mut V, struct_definition: &'v VariantData) {
932     visitor.visit_id(struct_definition.id());
933     walk_list!(visitor, visit_struct_field, struct_definition.fields());
934 }
935
936 pub fn walk_struct_field<'v, V: Visitor<'v>>(visitor: &mut V, struct_field: &'v StructField) {
937     visitor.visit_id(struct_field.id);
938     visitor.visit_vis(&struct_field.vis);
939     visitor.visit_ident(struct_field.ident);
940     visitor.visit_ty(&struct_field.ty);
941     walk_list!(visitor, visit_attribute, &struct_field.attrs);
942 }
943
944 pub fn walk_block<'v, V: Visitor<'v>>(visitor: &mut V, block: &'v Block) {
945     visitor.visit_id(block.id);
946     walk_list!(visitor, visit_stmt, &block.stmts);
947     walk_list!(visitor, visit_expr, &block.expr);
948 }
949
950 pub fn walk_stmt<'v, V: Visitor<'v>>(visitor: &mut V, statement: &'v Stmt) {
951     match statement.node {
952         StmtKind::Decl(ref declaration, id) => {
953             visitor.visit_id(id);
954             visitor.visit_decl(declaration)
955         }
956         StmtKind::Expr(ref expression, id) |
957         StmtKind::Semi(ref expression, id) => {
958             visitor.visit_id(id);
959             visitor.visit_expr(expression)
960         }
961     }
962 }
963
964 pub fn walk_decl<'v, V: Visitor<'v>>(visitor: &mut V, declaration: &'v Decl) {
965     match declaration.node {
966         DeclKind::Local(ref local) => visitor.visit_local(local),
967         DeclKind::Item(item) => visitor.visit_nested_item(item),
968     }
969 }
970
971 pub fn walk_anon_const<'v, V: Visitor<'v>>(visitor: &mut V, constant: &'v AnonConst) {
972     visitor.visit_id(constant.id);
973     visitor.visit_nested_body(constant.body);
974 }
975
976 pub fn walk_expr<'v, V: Visitor<'v>>(visitor: &mut V, expression: &'v Expr) {
977     visitor.visit_id(expression.id);
978     walk_list!(visitor, visit_attribute, expression.attrs.iter());
979     match expression.node {
980         ExprKind::Box(ref subexpression) => {
981             visitor.visit_expr(subexpression)
982         }
983         ExprKind::Array(ref subexpressions) => {
984             walk_list!(visitor, visit_expr, subexpressions);
985         }
986         ExprKind::Repeat(ref element, ref count) => {
987             visitor.visit_expr(element);
988             visitor.visit_anon_const(count)
989         }
990         ExprKind::Struct(ref qpath, ref fields, ref optional_base) => {
991             visitor.visit_qpath(qpath, expression.hir_id, expression.span);
992             for field in fields {
993                 visitor.visit_id(field.id);
994                 visitor.visit_ident(field.ident);
995                 visitor.visit_expr(&field.expr)
996             }
997             walk_list!(visitor, visit_expr, optional_base);
998         }
999         ExprKind::Tup(ref subexpressions) => {
1000             walk_list!(visitor, visit_expr, subexpressions);
1001         }
1002         ExprKind::Call(ref callee_expression, ref arguments) => {
1003             visitor.visit_expr(callee_expression);
1004             walk_list!(visitor, visit_expr, arguments);
1005         }
1006         ExprKind::MethodCall(ref segment, _, ref arguments) => {
1007             visitor.visit_path_segment(expression.span, segment);
1008             walk_list!(visitor, visit_expr, arguments);
1009         }
1010         ExprKind::Binary(_, ref left_expression, ref right_expression) => {
1011             visitor.visit_expr(left_expression);
1012             visitor.visit_expr(right_expression)
1013         }
1014         ExprKind::AddrOf(_, ref subexpression) | ExprKind::Unary(_, ref subexpression) => {
1015             visitor.visit_expr(subexpression)
1016         }
1017         ExprKind::Lit(_) => {}
1018         ExprKind::Cast(ref subexpression, ref typ) | ExprKind::Type(ref subexpression, ref typ) => {
1019             visitor.visit_expr(subexpression);
1020             visitor.visit_ty(typ)
1021         }
1022         ExprKind::If(ref head_expression, ref if_block, ref optional_else) => {
1023             visitor.visit_expr(head_expression);
1024             visitor.visit_expr(if_block);
1025             walk_list!(visitor, visit_expr, optional_else);
1026         }
1027         ExprKind::While(ref subexpression, ref block, ref opt_label) => {
1028             walk_list!(visitor, visit_label, opt_label);
1029             visitor.visit_expr(subexpression);
1030             visitor.visit_block(block);
1031         }
1032         ExprKind::Loop(ref block, ref opt_label, _) => {
1033             walk_list!(visitor, visit_label, opt_label);
1034             visitor.visit_block(block);
1035         }
1036         ExprKind::Match(ref subexpression, ref arms, _) => {
1037             visitor.visit_expr(subexpression);
1038             walk_list!(visitor, visit_arm, arms);
1039         }
1040         ExprKind::Closure(_, ref function_declaration, body, _fn_decl_span, _gen) => {
1041             visitor.visit_fn(FnKind::Closure(&expression.attrs),
1042                              function_declaration,
1043                              body,
1044                              expression.span,
1045                              expression.id)
1046         }
1047         ExprKind::Block(ref block, ref opt_label) => {
1048             walk_list!(visitor, visit_label, opt_label);
1049             visitor.visit_block(block);
1050         }
1051         ExprKind::Assign(ref left_hand_expression, ref right_hand_expression) => {
1052             visitor.visit_expr(right_hand_expression);
1053             visitor.visit_expr(left_hand_expression)
1054         }
1055         ExprKind::AssignOp(_, ref left_expression, ref right_expression) => {
1056             visitor.visit_expr(right_expression);
1057             visitor.visit_expr(left_expression)
1058         }
1059         ExprKind::Field(ref subexpression, ident) => {
1060             visitor.visit_expr(subexpression);
1061             visitor.visit_ident(ident);
1062         }
1063         ExprKind::Index(ref main_expression, ref index_expression) => {
1064             visitor.visit_expr(main_expression);
1065             visitor.visit_expr(index_expression)
1066         }
1067         ExprKind::Path(ref qpath) => {
1068             visitor.visit_qpath(qpath, expression.hir_id, expression.span);
1069         }
1070         ExprKind::Break(ref destination, ref opt_expr) => {
1071             if let Some(ref label) = destination.label {
1072                 visitor.visit_label(label);
1073                 if let Ok(node_id) = destination.target_id {
1074                     visitor.visit_def_mention(Def::Label(node_id))
1075                 }
1076             }
1077             walk_list!(visitor, visit_expr, opt_expr);
1078         }
1079         ExprKind::Continue(ref destination) => {
1080             if let Some(ref label) = destination.label {
1081                 visitor.visit_label(label);
1082                 if let Ok(node_id) = destination.target_id {
1083                     visitor.visit_def_mention(Def::Label(node_id))
1084                 }
1085             }
1086         }
1087         ExprKind::Ret(ref optional_expression) => {
1088             walk_list!(visitor, visit_expr, optional_expression);
1089         }
1090         ExprKind::InlineAsm(_, ref outputs, ref inputs) => {
1091             for expr in outputs.iter().chain(inputs.iter()) {
1092                 visitor.visit_expr(expr)
1093             }
1094         }
1095         ExprKind::Yield(ref subexpression) => {
1096             visitor.visit_expr(subexpression);
1097         }
1098     }
1099 }
1100
1101 pub fn walk_arm<'v, V: Visitor<'v>>(visitor: &mut V, arm: &'v Arm) {
1102     walk_list!(visitor, visit_pat, &arm.pats);
1103     if let Some(ref g) = arm.guard {
1104         match g {
1105             Guard::If(ref e) => visitor.visit_expr(e),
1106         }
1107     }
1108     visitor.visit_expr(&arm.body);
1109     walk_list!(visitor, visit_attribute, &arm.attrs);
1110 }
1111
1112 pub fn walk_vis<'v, V: Visitor<'v>>(visitor: &mut V, vis: &'v Visibility) {
1113     if let VisibilityKind::Restricted { ref path, id, hir_id } = vis.node {
1114         visitor.visit_id(id);
1115         visitor.visit_path(path, hir_id)
1116     }
1117 }
1118
1119 pub fn walk_associated_item_kind<'v, V: Visitor<'v>>(_: &mut V, _: &'v AssociatedItemKind) {
1120     // No visitable content here: this fn exists so you can call it if
1121     // the right thing to do, should content be added in the future,
1122     // would be to walk it.
1123 }
1124
1125 pub fn walk_defaultness<'v, V: Visitor<'v>>(_: &mut V, _: &'v Defaultness) {
1126     // No visitable content here: this fn exists so you can call it if
1127     // the right thing to do, should content be added in the future,
1128     // would be to walk it.
1129 }
1130
1131 #[derive(Copy, Clone, RustcEncodable, RustcDecodable, Debug)]
1132 pub struct IdRange {
1133     pub min: NodeId,
1134     pub max: NodeId,
1135 }
1136
1137 impl IdRange {
1138     pub fn max() -> IdRange {
1139         IdRange {
1140             min: NodeId::from_u32(u32::MAX),
1141             max: NodeId::from_u32(u32::MIN),
1142         }
1143     }
1144
1145     pub fn empty(&self) -> bool {
1146         self.min >= self.max
1147     }
1148
1149     pub fn contains(&self, id: NodeId) -> bool {
1150         id >= self.min && id < self.max
1151     }
1152
1153     pub fn add(&mut self, id: NodeId) {
1154         self.min = cmp::min(self.min, id);
1155         self.max = cmp::max(self.max, NodeId::from_u32(id.as_u32() + 1));
1156     }
1157 }
1158
1159
1160 pub struct IdRangeComputingVisitor<'a, 'hir: 'a> {
1161     result: IdRange,
1162     map: &'a map::Map<'hir>,
1163 }
1164
1165 impl<'a, 'hir> IdRangeComputingVisitor<'a, 'hir> {
1166     pub fn new(map: &'a map::Map<'hir>) -> IdRangeComputingVisitor<'a, 'hir> {
1167         IdRangeComputingVisitor { result: IdRange::max(), map: map }
1168     }
1169
1170     pub fn result(&self) -> IdRange {
1171         self.result
1172     }
1173 }
1174
1175 impl<'a, 'hir> Visitor<'hir> for IdRangeComputingVisitor<'a, 'hir> {
1176     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'hir> {
1177         NestedVisitorMap::OnlyBodies(&self.map)
1178     }
1179
1180     fn visit_id(&mut self, id: NodeId) {
1181         self.result.add(id);
1182     }
1183 }