Speed up execution a bit by removing some walks

This commit is contained in:
Guillaume Gomez 2023-01-20 16:02:57 +01:00
parent 9f70bdcbc8
commit 9b80a6ddf8

View File

@ -451,6 +451,26 @@ fn visit_item(&mut self, i: &'tcx hir::Item<'tcx>) {
} }
fn visit_mod(&mut self, _: &hir::Mod<'tcx>, _: Span, _: hir::HirId) { fn visit_mod(&mut self, _: &hir::Mod<'tcx>, _: Span, _: hir::HirId) {
// handled in `visit_item_inner` // Handled in `visit_item_inner`
}
fn visit_use(&mut self, _: &hir::UsePath<'tcx>, _: hir::HirId) {
// Handled in `visit_item_inner`
}
fn visit_path(&mut self, _: &hir::Path<'tcx>, _: hir::HirId) {
// Handled in `visit_item_inner`
}
fn visit_label(&mut self, _: &rustc_ast::Label) {
// Unneeded.
}
fn visit_infer(&mut self, _: &hir::InferArg) {
// Unneeded.
}
fn visit_lifetime(&mut self, _: &hir::Lifetime) {
// Unneeded.
} }
} }