Skip to content

Commit 117ff0a

Browse files
committed
Fix a bunch of sites that were walking instead of visiting, making it impossible for visitor impls to look at these values
1 parent a91f7d7 commit 117ff0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler/rustc_ast/src/mut_visit.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ pub fn noop_visit_ty<T: MutVisitor>(ty: &mut P<Ty>, vis: &mut T) {
482482
TyKind::Slice(ty) => vis.visit_ty(ty),
483483
TyKind::Ptr(mt) => vis.visit_mt(mt),
484484
TyKind::Ref(lt, mt) => {
485-
visit_opt(lt, |lt| noop_visit_lifetime(lt, vis));
485+
visit_opt(lt, |lt| vis.visit_lifetime(lt));
486486
vis.visit_mt(mt);
487487
}
488488
TyKind::BareFn(bft) => {
@@ -925,7 +925,7 @@ pub fn noop_flat_map_generic_param<T: MutVisitor>(
925925
vis.visit_id(id);
926926
visit_attrs(attrs, vis);
927927
vis.visit_ident(ident);
928-
visit_vec(bounds, |bound| noop_visit_param_bound(bound, vis));
928+
visit_vec(bounds, |bound| vis.visit_param_bound(bound));
929929
match kind {
930930
GenericParamKind::Lifetime => {}
931931
GenericParamKind::Type { default } => {
@@ -983,7 +983,7 @@ fn noop_visit_where_predicate<T: MutVisitor>(pred: &mut WherePredicate, vis: &mu
983983
}
984984
WherePredicate::RegionPredicate(rp) => {
985985
let WhereRegionPredicate { span, lifetime, bounds } = rp;
986-
noop_visit_lifetime(lifetime, vis);
986+
vis.visit_lifetime(lifetime);
987987
visit_vec(bounds, |bound| noop_visit_param_bound(bound, vis));
988988
vis.visit_span(span);
989989
}

0 commit comments

Comments
 (0)