Skip to content

Commit 872ac73

Browse files
committed
Move visit_id calls.
In `walk_item`, we call `visit_id` on every item kind. For most of them we do it directly in `walk_item`. But for `ItemKind::Mod`, `ItemKind::Enum`, and `ItemKind::Use` we instead do it in the `walk_*` function called (via the `visit_*` function) from `walk_item`. I can see no reason for this inconsistency, so this commit makes those three cases like all the other cases, moving the `visit_id` calls into `walk_item`. This also avoids the need for a few `HirId` arguments.
1 parent 98a4878 commit 872ac73

File tree

5 files changed

+14
-21
lines changed

5 files changed

+14
-21
lines changed

compiler/rustc_hir/src/intravisit.rs

+9-16
Original file line numberDiff line numberDiff line change
@@ -316,8 +316,8 @@ pub trait Visitor<'v>: Sized {
316316
fn visit_ident(&mut self, ident: Ident) -> Self::Result {
317317
walk_ident(self, ident)
318318
}
319-
fn visit_mod(&mut self, m: &'v Mod<'v>, _s: Span, n: HirId) -> Self::Result {
320-
walk_mod(self, m, n)
319+
fn visit_mod(&mut self, m: &'v Mod<'v>, _s: Span, _n: HirId) -> Self::Result {
320+
walk_mod(self, m)
321321
}
322322
fn visit_foreign_item(&mut self, i: &'v ForeignItem<'v>) -> Self::Result {
323323
walk_foreign_item(self, i)
@@ -464,8 +464,8 @@ pub trait Visitor<'v>: Sized {
464464
fn visit_field_def(&mut self, s: &'v FieldDef<'v>) -> Self::Result {
465465
walk_field_def(self, s)
466466
}
467-
fn visit_enum_def(&mut self, enum_definition: &'v EnumDef<'v>, item_id: HirId) -> Self::Result {
468-
walk_enum_def(self, enum_definition, item_id)
467+
fn visit_enum_def(&mut self, enum_definition: &'v EnumDef<'v>) -> Self::Result {
468+
walk_enum_def(self, enum_definition)
469469
}
470470
fn visit_variant(&mut self, v: &'v Variant<'v>) -> Self::Result {
471471
walk_variant(self, v)
@@ -539,6 +539,7 @@ pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item<'v>) -> V::
539539
visit_opt!(visitor, visit_name, orig_name);
540540
}
541541
ItemKind::Use(ref path, _) => {
542+
try_visit!(visitor.visit_id(item.hir_id()));
542543
try_visit!(visitor.visit_use(path, item.hir_id()));
543544
}
544545
ItemKind::Static(ref typ, _, body) => {
@@ -566,7 +567,7 @@ pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item<'v>) -> V::
566567
try_visit!(visitor.visit_id(item.hir_id()));
567568
}
568569
ItemKind::Mod(ref module) => {
569-
// `visit_mod()` takes care of visiting the `Item`'s `HirId`.
570+
try_visit!(visitor.visit_id(item.hir_id()));
570571
try_visit!(visitor.visit_mod(module, item.span, item.hir_id()));
571572
}
572573
ItemKind::ForeignMod { abi: _, items } => {
@@ -587,9 +588,9 @@ pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item<'v>) -> V::
587588
try_visit!(visitor.visit_generics(generics));
588589
}
589590
ItemKind::Enum(ref enum_definition, ref generics) => {
591+
try_visit!(visitor.visit_id(item.hir_id()));
590592
try_visit!(visitor.visit_generics(generics));
591-
// `visit_enum_def()` takes care of visiting the `Item`'s `HirId`.
592-
try_visit!(visitor.visit_enum_def(enum_definition, item.hir_id()));
593+
try_visit!(visitor.visit_enum_def(enum_definition));
593594
}
594595
ItemKind::Impl(Impl {
595596
constness: _,
@@ -638,12 +639,7 @@ pub fn walk_ident<'v, V: Visitor<'v>>(visitor: &mut V, ident: Ident) -> V::Resul
638639
visitor.visit_name(ident.name)
639640
}
640641

641-
pub fn walk_mod<'v, V: Visitor<'v>>(
642-
visitor: &mut V,
643-
module: &'v Mod<'v>,
644-
mod_hir_id: HirId,
645-
) -> V::Result {
646-
try_visit!(visitor.visit_id(mod_hir_id));
642+
pub fn walk_mod<'v, V: Visitor<'v>>(visitor: &mut V, module: &'v Mod<'v>) -> V::Result {
647643
walk_list!(visitor, visit_nested_item, module.item_ids.iter().copied());
648644
V::Result::output()
649645
}
@@ -1145,7 +1141,6 @@ pub fn walk_use<'v, V: Visitor<'v>>(
11451141
path: &'v UsePath<'v>,
11461142
hir_id: HirId,
11471143
) -> V::Result {
1148-
try_visit!(visitor.visit_id(hir_id));
11491144
let UsePath { segments, ref res, span } = *path;
11501145
for &res in res {
11511146
try_visit!(visitor.visit_path(&Path { segments, res, span }, hir_id));
@@ -1326,9 +1321,7 @@ pub fn walk_field_def<'v, V: Visitor<'v>>(
13261321
pub fn walk_enum_def<'v, V: Visitor<'v>>(
13271322
visitor: &mut V,
13281323
enum_definition: &'v EnumDef<'v>,
1329-
item_id: HirId,
13301324
) -> V::Result {
1331-
try_visit!(visitor.visit_id(item_id));
13321325
walk_list!(visitor, visit_variant, enum_definition.variants);
13331326
V::Result::output()
13341327
}

compiler/rustc_lint/src/late.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ impl<'tcx, T: LateLintPass<'tcx>> LateContextAndPass<'tcx, T> {
7474

7575
fn process_mod(&mut self, m: &'tcx hir::Mod<'tcx>, n: HirId) {
7676
lint_callback!(self, check_mod, m, n);
77-
hir_visit::walk_mod(self, m, n);
77+
hir_visit::walk_mod(self, m);
7878
}
7979
}
8080

compiler/rustc_middle/src/hir/map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1356,7 +1356,7 @@ impl<'hir> Visitor<'hir> for ItemCollector<'hir> {
13561356
self.submodules.push(item.owner_id);
13571357
// A module collector does not recurse inside nested modules.
13581358
if self.crate_collector {
1359-
intravisit::walk_mod(self, module, item.hir_id());
1359+
intravisit::walk_mod(self, module);
13601360
}
13611361
} else {
13621362
intravisit::walk_item(self, item)

compiler/rustc_passes/src/input_stats.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,9 @@ impl<'v> hir_visit::Visitor<'v> for StatCollector<'v> {
255255
hir_visit::walk_body(self, b);
256256
}
257257

258-
fn visit_mod(&mut self, m: &'v hir::Mod<'v>, _s: Span, n: HirId) {
258+
fn visit_mod(&mut self, m: &'v hir::Mod<'v>, _s: Span, _n: HirId) {
259259
self.record("Mod", None, m);
260-
hir_visit::walk_mod(self, m, n)
260+
hir_visit::walk_mod(self, m)
261261
}
262262

263263
fn visit_foreign_item(&mut self, i: &'v hir::ForeignItem<'v>) {

src/librustdoc/html/render/span_map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ impl<'tcx> Visitor<'tcx> for SpanMapVisitor<'tcx> {
253253
// If it's a "mod foo {}", we want to look to its documentation page.
254254
self.extract_info_from_hir_id(id);
255255
}
256-
intravisit::walk_mod(self, m, id);
256+
intravisit::walk_mod(self, m);
257257
}
258258

259259
fn visit_expr(&mut self, expr: &'tcx rustc_hir::Expr<'tcx>) {

0 commit comments

Comments
 (0)