]> git.lizzy.rs Git - rust.git/blob - src/librustc/hir/intravisit.rs
Rollup merge of #54258 - alexcrichton:lld-fatal-warnings, r=eddyb
[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::Array(ref ty, ref length) => {
607             visitor.visit_ty(ty);
608             visitor.visit_anon_const(length)
609         }
610         TyKind::TraitObject(ref bounds, ref lifetime) => {
611             for bound in bounds {
612                 visitor.visit_poly_trait_ref(bound, TraitBoundModifier::None);
613             }
614             visitor.visit_lifetime(lifetime);
615         }
616         TyKind::Typeof(ref expression) => {
617             visitor.visit_anon_const(expression)
618         }
619         TyKind::Infer | TyKind::Err => {}
620     }
621 }
622
623 pub fn walk_qpath<'v, V: Visitor<'v>>(visitor: &mut V, qpath: &'v QPath, id: HirId, span: Span) {
624     match *qpath {
625         QPath::Resolved(ref maybe_qself, ref path) => {
626             if let Some(ref qself) = *maybe_qself {
627                 visitor.visit_ty(qself);
628             }
629             visitor.visit_path(path, id)
630         }
631         QPath::TypeRelative(ref qself, ref segment) => {
632             visitor.visit_ty(qself);
633             visitor.visit_path_segment(span, segment);
634         }
635     }
636 }
637
638 pub fn walk_path<'v, V: Visitor<'v>>(visitor: &mut V, path: &'v Path) {
639     visitor.visit_def_mention(path.def);
640     for segment in &path.segments {
641         visitor.visit_path_segment(path.span, segment);
642     }
643 }
644
645 pub fn walk_path_segment<'v, V: Visitor<'v>>(visitor: &mut V,
646                                              path_span: Span,
647                                              segment: &'v PathSegment) {
648     visitor.visit_ident(segment.ident);
649     if let Some(ref args) = segment.args {
650         visitor.visit_generic_args(path_span, args);
651     }
652 }
653
654 pub fn walk_generic_args<'v, V: Visitor<'v>>(visitor: &mut V,
655                                              _path_span: Span,
656                                              generic_args: &'v GenericArgs) {
657     walk_list!(visitor, visit_generic_arg, &generic_args.args);
658     walk_list!(visitor, visit_assoc_type_binding, &generic_args.bindings);
659 }
660
661 pub fn walk_assoc_type_binding<'v, V: Visitor<'v>>(visitor: &mut V,
662                                                    type_binding: &'v TypeBinding) {
663     visitor.visit_id(type_binding.id);
664     visitor.visit_ident(type_binding.ident);
665     visitor.visit_ty(&type_binding.ty);
666 }
667
668 pub fn walk_pat<'v, V: Visitor<'v>>(visitor: &mut V, pattern: &'v Pat) {
669     visitor.visit_id(pattern.id);
670     match pattern.node {
671         PatKind::TupleStruct(ref qpath, ref children, _) => {
672             visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
673             walk_list!(visitor, visit_pat, children);
674         }
675         PatKind::Path(ref qpath) => {
676             visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
677         }
678         PatKind::Struct(ref qpath, ref fields, _) => {
679             visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
680             for field in fields {
681                 visitor.visit_id(field.node.id);
682                 visitor.visit_ident(field.node.ident);
683                 visitor.visit_pat(&field.node.pat)
684             }
685         }
686         PatKind::Tuple(ref tuple_elements, _) => {
687             walk_list!(visitor, visit_pat, tuple_elements);
688         }
689         PatKind::Box(ref subpattern) |
690         PatKind::Ref(ref subpattern, _) => {
691             visitor.visit_pat(subpattern)
692         }
693         PatKind::Binding(_, canonical_id, ident, ref optional_subpattern) => {
694             visitor.visit_def_mention(Def::Local(canonical_id));
695             visitor.visit_ident(ident);
696             walk_list!(visitor, visit_pat, optional_subpattern);
697         }
698         PatKind::Lit(ref expression) => visitor.visit_expr(expression),
699         PatKind::Range(ref lower_bound, ref upper_bound, _) => {
700             visitor.visit_expr(lower_bound);
701             visitor.visit_expr(upper_bound)
702         }
703         PatKind::Wild => (),
704         PatKind::Slice(ref prepatterns, ref slice_pattern, ref postpatterns) => {
705             walk_list!(visitor, visit_pat, prepatterns);
706             walk_list!(visitor, visit_pat, slice_pattern);
707             walk_list!(visitor, visit_pat, postpatterns);
708         }
709     }
710 }
711
712 pub fn walk_foreign_item<'v, V: Visitor<'v>>(visitor: &mut V, foreign_item: &'v ForeignItem) {
713     visitor.visit_id(foreign_item.id);
714     visitor.visit_vis(&foreign_item.vis);
715     visitor.visit_name(foreign_item.span, foreign_item.name);
716
717     match foreign_item.node {
718         ForeignItemKind::Fn(ref function_declaration, ref param_names, ref generics) => {
719             visitor.visit_generics(generics);
720             visitor.visit_fn_decl(function_declaration);
721             for &param_name in param_names {
722                 visitor.visit_ident(param_name);
723             }
724         }
725         ForeignItemKind::Static(ref typ, _) => visitor.visit_ty(typ),
726         ForeignItemKind::Type => (),
727     }
728
729     walk_list!(visitor, visit_attribute, &foreign_item.attrs);
730 }
731
732 pub fn walk_param_bound<'v, V: Visitor<'v>>(visitor: &mut V, bound: &'v GenericBound) {
733     match *bound {
734         GenericBound::Trait(ref typ, modifier) => {
735             visitor.visit_poly_trait_ref(typ, modifier);
736         }
737         GenericBound::Outlives(ref lifetime) => visitor.visit_lifetime(lifetime),
738     }
739 }
740
741 pub fn walk_generic_param<'v, V: Visitor<'v>>(visitor: &mut V, param: &'v GenericParam) {
742     visitor.visit_id(param.id);
743     walk_list!(visitor, visit_attribute, &param.attrs);
744     match param.name {
745         ParamName::Plain(ident) => visitor.visit_ident(ident),
746         ParamName::Fresh(_) => {}
747     }
748     match param.kind {
749         GenericParamKind::Lifetime { .. } => {}
750         GenericParamKind::Type { ref default, .. } => walk_list!(visitor, visit_ty, default),
751     }
752     walk_list!(visitor, visit_param_bound, &param.bounds);
753 }
754
755 pub fn walk_generics<'v, V: Visitor<'v>>(visitor: &mut V, generics: &'v Generics) {
756     walk_list!(visitor, visit_generic_param, &generics.params);
757     visitor.visit_id(generics.where_clause.id);
758     walk_list!(visitor, visit_where_predicate, &generics.where_clause.predicates);
759 }
760
761 pub fn walk_where_predicate<'v, V: Visitor<'v>>(
762     visitor: &mut V,
763     predicate: &'v WherePredicate)
764 {
765     match predicate {
766         &WherePredicate::BoundPredicate(WhereBoundPredicate{ref bounded_ty,
767                                                             ref bounds,
768                                                             ref bound_generic_params,
769                                                             ..}) => {
770             visitor.visit_ty(bounded_ty);
771             walk_list!(visitor, visit_param_bound, bounds);
772             walk_list!(visitor, visit_generic_param, bound_generic_params);
773         }
774         &WherePredicate::RegionPredicate(WhereRegionPredicate{ref lifetime,
775                                                               ref bounds,
776                                                               ..}) => {
777             visitor.visit_lifetime(lifetime);
778             walk_list!(visitor, visit_param_bound, bounds);
779         }
780         &WherePredicate::EqPredicate(WhereEqPredicate{id,
781                                                       ref lhs_ty,
782                                                       ref rhs_ty,
783                                                       ..}) => {
784             visitor.visit_id(id);
785             visitor.visit_ty(lhs_ty);
786             visitor.visit_ty(rhs_ty);
787         }
788     }
789 }
790
791 pub fn walk_fn_ret_ty<'v, V: Visitor<'v>>(visitor: &mut V, ret_ty: &'v FunctionRetTy) {
792     if let Return(ref output_ty) = *ret_ty {
793         visitor.visit_ty(output_ty)
794     }
795 }
796
797 pub fn walk_fn_decl<'v, V: Visitor<'v>>(visitor: &mut V, function_declaration: &'v FnDecl) {
798     for ty in &function_declaration.inputs {
799         visitor.visit_ty(ty)
800     }
801     walk_fn_ret_ty(visitor, &function_declaration.output)
802 }
803
804 pub fn walk_fn_kind<'v, V: Visitor<'v>>(visitor: &mut V, function_kind: FnKind<'v>) {
805     match function_kind {
806         FnKind::ItemFn(_, generics, ..) => {
807             visitor.visit_generics(generics);
808         }
809         FnKind::Method(..) |
810         FnKind::Closure(_) => {}
811     }
812 }
813
814 pub fn walk_fn<'v, V: Visitor<'v>>(visitor: &mut V,
815                                    function_kind: FnKind<'v>,
816                                    function_declaration: &'v FnDecl,
817                                    body_id: BodyId,
818                                    _span: Span,
819                                    id: NodeId) {
820     visitor.visit_id(id);
821     visitor.visit_fn_decl(function_declaration);
822     walk_fn_kind(visitor, function_kind);
823     visitor.visit_nested_body(body_id)
824 }
825
826 pub fn walk_trait_item<'v, V: Visitor<'v>>(visitor: &mut V, trait_item: &'v TraitItem) {
827     visitor.visit_ident(trait_item.ident);
828     walk_list!(visitor, visit_attribute, &trait_item.attrs);
829     visitor.visit_generics(&trait_item.generics);
830     match trait_item.node {
831         TraitItemKind::Const(ref ty, default) => {
832             visitor.visit_id(trait_item.id);
833             visitor.visit_ty(ty);
834             walk_list!(visitor, visit_nested_body, default);
835         }
836         TraitItemKind::Method(ref sig, TraitMethod::Required(ref param_names)) => {
837             visitor.visit_id(trait_item.id);
838             visitor.visit_fn_decl(&sig.decl);
839             for &param_name in param_names {
840                 visitor.visit_ident(param_name);
841             }
842         }
843         TraitItemKind::Method(ref sig, TraitMethod::Provided(body_id)) => {
844             visitor.visit_fn(FnKind::Method(trait_item.ident,
845                                             sig,
846                                             None,
847                                             &trait_item.attrs),
848                              &sig.decl,
849                              body_id,
850                              trait_item.span,
851                              trait_item.id);
852         }
853         TraitItemKind::Type(ref bounds, ref default) => {
854             visitor.visit_id(trait_item.id);
855             walk_list!(visitor, visit_param_bound, bounds);
856             walk_list!(visitor, visit_ty, default);
857         }
858     }
859 }
860
861 pub fn walk_trait_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, trait_item_ref: &'v TraitItemRef) {
862     // NB: Deliberately force a compilation error if/when new fields are added.
863     let TraitItemRef { id, ident, ref kind, span: _, ref defaultness } = *trait_item_ref;
864     visitor.visit_nested_trait_item(id);
865     visitor.visit_ident(ident);
866     visitor.visit_associated_item_kind(kind);
867     visitor.visit_defaultness(defaultness);
868 }
869
870 pub fn walk_impl_item<'v, V: Visitor<'v>>(visitor: &mut V, impl_item: &'v ImplItem) {
871     // NB: Deliberately force a compilation error if/when new fields are added.
872     let ImplItem {
873         id: _,
874         hir_id: _,
875         ident,
876         ref vis,
877         ref defaultness,
878         ref attrs,
879         ref generics,
880         ref node,
881         span: _,
882     } = *impl_item;
883
884     visitor.visit_ident(ident);
885     visitor.visit_vis(vis);
886     visitor.visit_defaultness(defaultness);
887     walk_list!(visitor, visit_attribute, attrs);
888     visitor.visit_generics(generics);
889     match *node {
890         ImplItemKind::Const(ref ty, body) => {
891             visitor.visit_id(impl_item.id);
892             visitor.visit_ty(ty);
893             visitor.visit_nested_body(body);
894         }
895         ImplItemKind::Method(ref sig, body_id) => {
896             visitor.visit_fn(FnKind::Method(impl_item.ident,
897                                             sig,
898                                             Some(&impl_item.vis),
899                                             &impl_item.attrs),
900                              &sig.decl,
901                              body_id,
902                              impl_item.span,
903                              impl_item.id);
904         }
905         ImplItemKind::Type(ref ty) => {
906             visitor.visit_id(impl_item.id);
907             visitor.visit_ty(ty);
908         }
909         ImplItemKind::Existential(ref bounds) => {
910             visitor.visit_id(impl_item.id);
911             walk_list!(visitor, visit_param_bound, bounds);
912         }
913     }
914 }
915
916 pub fn walk_impl_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, impl_item_ref: &'v ImplItemRef) {
917     // NB: Deliberately force a compilation error if/when new fields are added.
918     let ImplItemRef { id, ident, ref kind, span: _, ref vis, ref defaultness } = *impl_item_ref;
919     visitor.visit_nested_impl_item(id);
920     visitor.visit_ident(ident);
921     visitor.visit_associated_item_kind(kind);
922     visitor.visit_vis(vis);
923     visitor.visit_defaultness(defaultness);
924 }
925
926
927 pub fn walk_struct_def<'v, V: Visitor<'v>>(visitor: &mut V, struct_definition: &'v VariantData) {
928     visitor.visit_id(struct_definition.id());
929     walk_list!(visitor, visit_struct_field, struct_definition.fields());
930 }
931
932 pub fn walk_struct_field<'v, V: Visitor<'v>>(visitor: &mut V, struct_field: &'v StructField) {
933     visitor.visit_id(struct_field.id);
934     visitor.visit_vis(&struct_field.vis);
935     visitor.visit_ident(struct_field.ident);
936     visitor.visit_ty(&struct_field.ty);
937     walk_list!(visitor, visit_attribute, &struct_field.attrs);
938 }
939
940 pub fn walk_block<'v, V: Visitor<'v>>(visitor: &mut V, block: &'v Block) {
941     visitor.visit_id(block.id);
942     walk_list!(visitor, visit_stmt, &block.stmts);
943     walk_list!(visitor, visit_expr, &block.expr);
944 }
945
946 pub fn walk_stmt<'v, V: Visitor<'v>>(visitor: &mut V, statement: &'v Stmt) {
947     match statement.node {
948         StmtKind::Decl(ref declaration, id) => {
949             visitor.visit_id(id);
950             visitor.visit_decl(declaration)
951         }
952         StmtKind::Expr(ref expression, id) |
953         StmtKind::Semi(ref expression, id) => {
954             visitor.visit_id(id);
955             visitor.visit_expr(expression)
956         }
957     }
958 }
959
960 pub fn walk_decl<'v, V: Visitor<'v>>(visitor: &mut V, declaration: &'v Decl) {
961     match declaration.node {
962         DeclKind::Local(ref local) => visitor.visit_local(local),
963         DeclKind::Item(item) => visitor.visit_nested_item(item),
964     }
965 }
966
967 pub fn walk_anon_const<'v, V: Visitor<'v>>(visitor: &mut V, constant: &'v AnonConst) {
968     visitor.visit_id(constant.id);
969     visitor.visit_nested_body(constant.body);
970 }
971
972 pub fn walk_expr<'v, V: Visitor<'v>>(visitor: &mut V, expression: &'v Expr) {
973     visitor.visit_id(expression.id);
974     walk_list!(visitor, visit_attribute, expression.attrs.iter());
975     match expression.node {
976         ExprKind::Box(ref subexpression) => {
977             visitor.visit_expr(subexpression)
978         }
979         ExprKind::Array(ref subexpressions) => {
980             walk_list!(visitor, visit_expr, subexpressions);
981         }
982         ExprKind::Repeat(ref element, ref count) => {
983             visitor.visit_expr(element);
984             visitor.visit_anon_const(count)
985         }
986         ExprKind::Struct(ref qpath, ref fields, ref optional_base) => {
987             visitor.visit_qpath(qpath, expression.hir_id, expression.span);
988             for field in fields {
989                 visitor.visit_id(field.id);
990                 visitor.visit_ident(field.ident);
991                 visitor.visit_expr(&field.expr)
992             }
993             walk_list!(visitor, visit_expr, optional_base);
994         }
995         ExprKind::Tup(ref subexpressions) => {
996             walk_list!(visitor, visit_expr, subexpressions);
997         }
998         ExprKind::Call(ref callee_expression, ref arguments) => {
999             visitor.visit_expr(callee_expression);
1000             walk_list!(visitor, visit_expr, arguments);
1001         }
1002         ExprKind::MethodCall(ref segment, _, ref arguments) => {
1003             visitor.visit_path_segment(expression.span, segment);
1004             walk_list!(visitor, visit_expr, arguments);
1005         }
1006         ExprKind::Binary(_, ref left_expression, ref right_expression) => {
1007             visitor.visit_expr(left_expression);
1008             visitor.visit_expr(right_expression)
1009         }
1010         ExprKind::AddrOf(_, ref subexpression) | ExprKind::Unary(_, ref subexpression) => {
1011             visitor.visit_expr(subexpression)
1012         }
1013         ExprKind::Lit(_) => {}
1014         ExprKind::Cast(ref subexpression, ref typ) | ExprKind::Type(ref subexpression, ref typ) => {
1015             visitor.visit_expr(subexpression);
1016             visitor.visit_ty(typ)
1017         }
1018         ExprKind::If(ref head_expression, ref if_block, ref optional_else) => {
1019             visitor.visit_expr(head_expression);
1020             visitor.visit_expr(if_block);
1021             walk_list!(visitor, visit_expr, optional_else);
1022         }
1023         ExprKind::While(ref subexpression, ref block, ref opt_label) => {
1024             walk_list!(visitor, visit_label, opt_label);
1025             visitor.visit_expr(subexpression);
1026             visitor.visit_block(block);
1027         }
1028         ExprKind::Loop(ref block, ref opt_label, _) => {
1029             walk_list!(visitor, visit_label, opt_label);
1030             visitor.visit_block(block);
1031         }
1032         ExprKind::Match(ref subexpression, ref arms, _) => {
1033             visitor.visit_expr(subexpression);
1034             walk_list!(visitor, visit_arm, arms);
1035         }
1036         ExprKind::Closure(_, ref function_declaration, body, _fn_decl_span, _gen) => {
1037             visitor.visit_fn(FnKind::Closure(&expression.attrs),
1038                              function_declaration,
1039                              body,
1040                              expression.span,
1041                              expression.id)
1042         }
1043         ExprKind::Block(ref block, ref opt_label) => {
1044             walk_list!(visitor, visit_label, opt_label);
1045             visitor.visit_block(block);
1046         }
1047         ExprKind::Assign(ref left_hand_expression, ref right_hand_expression) => {
1048             visitor.visit_expr(right_hand_expression);
1049             visitor.visit_expr(left_hand_expression)
1050         }
1051         ExprKind::AssignOp(_, ref left_expression, ref right_expression) => {
1052             visitor.visit_expr(right_expression);
1053             visitor.visit_expr(left_expression)
1054         }
1055         ExprKind::Field(ref subexpression, ident) => {
1056             visitor.visit_expr(subexpression);
1057             visitor.visit_ident(ident);
1058         }
1059         ExprKind::Index(ref main_expression, ref index_expression) => {
1060             visitor.visit_expr(main_expression);
1061             visitor.visit_expr(index_expression)
1062         }
1063         ExprKind::Path(ref qpath) => {
1064             visitor.visit_qpath(qpath, expression.hir_id, expression.span);
1065         }
1066         ExprKind::Break(ref destination, ref opt_expr) => {
1067             if let Some(ref label) = destination.label {
1068                 visitor.visit_label(label);
1069                 if let Ok(node_id) = destination.target_id {
1070                     visitor.visit_def_mention(Def::Label(node_id))
1071                 }
1072             }
1073             walk_list!(visitor, visit_expr, opt_expr);
1074         }
1075         ExprKind::Continue(ref destination) => {
1076             if let Some(ref label) = destination.label {
1077                 visitor.visit_label(label);
1078                 if let Ok(node_id) = destination.target_id {
1079                     visitor.visit_def_mention(Def::Label(node_id))
1080                 }
1081             }
1082         }
1083         ExprKind::Ret(ref optional_expression) => {
1084             walk_list!(visitor, visit_expr, optional_expression);
1085         }
1086         ExprKind::InlineAsm(_, ref outputs, ref inputs) => {
1087             for expr in outputs.iter().chain(inputs.iter()) {
1088                 visitor.visit_expr(expr)
1089             }
1090         }
1091         ExprKind::Yield(ref subexpression) => {
1092             visitor.visit_expr(subexpression);
1093         }
1094     }
1095 }
1096
1097 pub fn walk_arm<'v, V: Visitor<'v>>(visitor: &mut V, arm: &'v Arm) {
1098     walk_list!(visitor, visit_pat, &arm.pats);
1099     if let Some(ref g) = arm.guard {
1100         match g {
1101             Guard::If(ref e) => visitor.visit_expr(e),
1102         }
1103     }
1104     visitor.visit_expr(&arm.body);
1105     walk_list!(visitor, visit_attribute, &arm.attrs);
1106 }
1107
1108 pub fn walk_vis<'v, V: Visitor<'v>>(visitor: &mut V, vis: &'v Visibility) {
1109     if let VisibilityKind::Restricted { ref path, id, hir_id } = vis.node {
1110         visitor.visit_id(id);
1111         visitor.visit_path(path, hir_id)
1112     }
1113 }
1114
1115 pub fn walk_associated_item_kind<'v, V: Visitor<'v>>(_: &mut V, _: &'v AssociatedItemKind) {
1116     // No visitable content here: this fn exists so you can call it if
1117     // the right thing to do, should content be added in the future,
1118     // would be to walk it.
1119 }
1120
1121 pub fn walk_defaultness<'v, V: Visitor<'v>>(_: &mut V, _: &'v Defaultness) {
1122     // No visitable content here: this fn exists so you can call it if
1123     // the right thing to do, should content be added in the future,
1124     // would be to walk it.
1125 }
1126
1127 #[derive(Copy, Clone, RustcEncodable, RustcDecodable, Debug)]
1128 pub struct IdRange {
1129     pub min: NodeId,
1130     pub max: NodeId,
1131 }
1132
1133 impl IdRange {
1134     pub fn max() -> IdRange {
1135         IdRange {
1136             min: NodeId::from_u32(u32::MAX),
1137             max: NodeId::from_u32(u32::MIN),
1138         }
1139     }
1140
1141     pub fn empty(&self) -> bool {
1142         self.min >= self.max
1143     }
1144
1145     pub fn contains(&self, id: NodeId) -> bool {
1146         id >= self.min && id < self.max
1147     }
1148
1149     pub fn add(&mut self, id: NodeId) {
1150         self.min = cmp::min(self.min, id);
1151         self.max = cmp::max(self.max, NodeId::from_u32(id.as_u32() + 1));
1152     }
1153 }
1154
1155
1156 pub struct IdRangeComputingVisitor<'a, 'hir: 'a> {
1157     result: IdRange,
1158     map: &'a map::Map<'hir>,
1159 }
1160
1161 impl<'a, 'hir> IdRangeComputingVisitor<'a, 'hir> {
1162     pub fn new(map: &'a map::Map<'hir>) -> IdRangeComputingVisitor<'a, 'hir> {
1163         IdRangeComputingVisitor { result: IdRange::max(), map: map }
1164     }
1165
1166     pub fn result(&self) -> IdRange {
1167         self.result
1168     }
1169 }
1170
1171 impl<'a, 'hir> Visitor<'hir> for IdRangeComputingVisitor<'a, 'hir> {
1172     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'hir> {
1173         NestedVisitorMap::OnlyBodies(&self.map)
1174     }
1175
1176     fn visit_id(&mut self, id: NodeId) {
1177         self.result.add(id);
1178     }
1179 }