Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b6d2d84

Browse files
committedMar 5, 2024
Auto merge of rust-lang#121576 - Jarcho:visitor3, r=oli-obk
Convert the rest of the visitors to use `VisitorResult` Continuing from rust-lang#121256.
2 parents 3c02972 + 228eb38 commit b6d2d84

File tree

68 files changed

+496
-586
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+496
-586
lines changed
 

‎compiler/rustc_hir_analysis/src/check/check.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1474,15 +1474,14 @@ fn opaque_type_cycle_error(
14741474
closures: Vec<DefId>,
14751475
}
14761476
impl<'tcx> ty::visit::TypeVisitor<TyCtxt<'tcx>> for OpaqueTypeCollector {
1477-
fn visit_ty(&mut self, t: Ty<'tcx>) -> ControlFlow<Self::BreakTy> {
1477+
fn visit_ty(&mut self, t: Ty<'tcx>) {
14781478
match *t.kind() {
14791479
ty::Alias(ty::Opaque, ty::AliasTy { def_id: def, .. }) => {
14801480
self.opaques.push(def);
1481-
ControlFlow::Continue(())
14821481
}
14831482
ty::Closure(def_id, ..) | ty::Coroutine(def_id, ..) => {
14841483
self.closures.push(def_id);
1485-
t.super_visit_with(self)
1484+
t.super_visit_with(self);
14861485
}
14871486
_ => t.super_visit_with(self),
14881487
}

‎compiler/rustc_hir_analysis/src/check/compare_impl_item/refine.rs

+3-7
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use rustc_trait_selection::regions::InferCtxtRegionExt;
1212
use rustc_trait_selection::traits::{
1313
elaborate, normalize_param_env_or_error, outlives_bounds::InferCtxtExt, ObligationCtxt,
1414
};
15-
use std::ops::ControlFlow;
1615

1716
/// Check that an implementation does not refine an RPITIT from a trait method signature.
1817
pub(super) fn check_refining_return_position_impl_trait_in_trait<'tcx>(
@@ -211,9 +210,7 @@ struct ImplTraitInTraitCollector<'tcx> {
211210
}
212211

213212
impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for ImplTraitInTraitCollector<'tcx> {
214-
type BreakTy = !;
215-
216-
fn visit_ty(&mut self, ty: Ty<'tcx>) -> std::ops::ControlFlow<Self::BreakTy> {
213+
fn visit_ty(&mut self, ty: Ty<'tcx>) {
217214
if let ty::Alias(ty::Projection, proj) = *ty.kind()
218215
&& self.tcx.is_impl_trait_in_trait(proj.def_id)
219216
{
@@ -223,12 +220,11 @@ impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for ImplTraitInTraitCollector<'tcx> {
223220
.explicit_item_bounds(proj.def_id)
224221
.iter_instantiated_copied(self.tcx, proj.args)
225222
{
226-
pred.visit_with(self)?;
223+
pred.visit_with(self);
227224
}
228225
}
229-
ControlFlow::Continue(())
230226
} else {
231-
ty.super_visit_with(self)
227+
ty.super_visit_with(self);
232228
}
233229
}
234230
}

‎compiler/rustc_hir_analysis/src/check/region.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/borrow_check.html
88
9-
use rustc_ast::walk_list;
9+
use rustc_ast::visit::walk_list;
1010
use rustc_data_structures::fx::FxHashSet;
1111
use rustc_hir as hir;
1212
use rustc_hir::def_id::DefId;
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Failed to load comments.