@@ -370,17 +370,17 @@ define_maps! { <'tcx>
370
370
[ ] fn erase_regions_ty: erase_regions_ty( Ty <' tcx>) -> Ty <' tcx>,
371
371
372
372
/// Do not call this query directly: invoke `normalize` instead.
373
- [ ] fn normalize_projection_ty: normalize_projection_ty_node (
373
+ [ ] fn normalize_projection_ty: NormalizeProjectionTy (
374
374
& ' tcx Canonical <ParamEnvAnd <' tcx, ty:: ProjectionTy <' tcx>>>
375
375
) -> Result <Rc <Canonical <QueryResult <' tcx, NormalizationResult <' tcx>>>>, NoSolution >,
376
376
377
377
/// Do not call this query directly: invoke `normalize_erasing_regions` instead.
378
- [ ] fn normalize_ty_after_erasing_regions: normalize_ty_node (
378
+ [ ] fn normalize_ty_after_erasing_regions: NormalizeTyAfterErasingRegions (
379
379
ParamEnvAnd <' tcx, Ty <' tcx>>
380
380
) -> Ty <' tcx>,
381
381
382
382
/// Do not call this query directly: invoke `infcx.at().dropck_outlives()` instead.
383
- [ ] fn dropck_outlives: normalize_ty_node (
383
+ [ ] fn dropck_outlives: DropckOutlives (
384
384
& ' tcx Canonical <ParamEnvAnd <' tcx, Ty <' tcx>>>
385
385
) -> Result <Rc <Canonical <QueryResult <' tcx, DropckOutlivesResult <' tcx>>>>, NoSolution >,
386
386
@@ -532,16 +532,6 @@ fn vtable_methods_node<'tcx>(trait_ref: ty::PolyTraitRef<'tcx>) -> DepConstructo
532
532
DepConstructor :: VtableMethods { trait_ref }
533
533
}
534
534
535
- fn normalize_ty_node < ' tcx , T > ( _: T ) -> DepConstructor < ' tcx > {
536
- DepConstructor :: NormalizeTy
537
- }
538
-
539
- fn normalize_projection_ty_node < ' tcx > (
540
- ty : & ' tcx Canonical < ParamEnvAnd < ' tcx , ty:: ProjectionTy < ' tcx > > >
541
- ) -> DepConstructor < ' tcx > {
542
- DepConstructor :: NormalizeProjectionTy { ty }
543
- }
544
-
545
535
fn substitute_normalize_and_test_predicates_node < ' tcx > ( key : ( DefId , & ' tcx Substs < ' tcx > ) )
546
536
-> DepConstructor < ' tcx > {
547
537
DepConstructor :: SubstituteNormalizeAndTestPredicates { key }
0 commit comments