@@ -47,7 +47,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
47
47
let rustc_dump_user_substs =
48
48
self . tcx . has_attr ( item_def_id. to_def_id ( ) , sym:: rustc_dump_user_substs) ;
49
49
50
- let mut wbcx = WritebackCx :: new ( self , body , rustc_dump_user_substs) ;
50
+ let mut wbcx = WritebackCx :: new ( self , rustc_dump_user_substs) ;
51
51
for param in body. params {
52
52
wbcx. visit_node_id ( param. pat . span , param. hir_id ) ;
53
53
}
@@ -106,23 +106,16 @@ struct WritebackCx<'cx, 'tcx> {
106
106
107
107
typeck_results : ty:: TypeckResults < ' tcx > ,
108
108
109
- body : & ' tcx hir:: Body < ' tcx > ,
110
-
111
109
rustc_dump_user_substs : bool ,
112
110
}
113
111
114
112
impl < ' cx , ' tcx > WritebackCx < ' cx , ' tcx > {
115
- fn new (
116
- fcx : & ' cx FnCtxt < ' cx , ' tcx > ,
117
- body : & ' tcx hir:: Body < ' tcx > ,
118
- rustc_dump_user_substs : bool ,
119
- ) -> WritebackCx < ' cx , ' tcx > {
120
- let owner = body. id ( ) . hir_id . owner ;
121
-
113
+ fn new ( fcx : & ' cx FnCtxt < ' cx , ' tcx > , rustc_dump_user_substs : bool ) -> WritebackCx < ' cx , ' tcx > {
114
+ // All bodies which share typeck results have the same `OwnerId`.
115
+ let hir_id = fcx. tcx . hir ( ) . local_def_id_to_hir_id ( fcx. body_id ) ;
122
116
WritebackCx {
123
117
fcx,
124
- typeck_results : ty:: TypeckResults :: new ( owner) ,
125
- body,
118
+ typeck_results : ty:: TypeckResults :: new ( hir_id. owner ) ,
126
119
rustc_dump_user_substs,
127
120
}
128
121
}
@@ -687,7 +680,7 @@ impl<'cx, 'tcx> WritebackCx<'cx, 'tcx> {
687
680
where
688
681
T : TypeFoldable < TyCtxt < ' tcx > > ,
689
682
{
690
- let mut resolver = Resolver :: new ( self . fcx , span, self . body ) ;
683
+ let mut resolver = Resolver :: new ( self . fcx , span) ;
691
684
let x = x. fold_with ( & mut resolver) ;
692
685
if cfg ! ( debug_assertions) && x. needs_infer ( ) {
693
686
span_bug ! ( span. to_span( self . fcx. tcx) , "writeback: `{:?}` has inference variables" , x) ;
@@ -726,19 +719,14 @@ struct Resolver<'cx, 'tcx> {
726
719
tcx : TyCtxt < ' tcx > ,
727
720
infcx : & ' cx InferCtxt < ' tcx > ,
728
721
span : & ' cx dyn Locatable ,
729
- body : & ' tcx hir:: Body < ' tcx > ,
730
722
731
723
/// Set to `Some` if any `Ty` or `ty::Const` had to be replaced with an `Error`.
732
724
replaced_with_error : Option < ErrorGuaranteed > ,
733
725
}
734
726
735
727
impl < ' cx , ' tcx > Resolver < ' cx , ' tcx > {
736
- fn new (
737
- fcx : & ' cx FnCtxt < ' cx , ' tcx > ,
738
- span : & ' cx dyn Locatable ,
739
- body : & ' tcx hir:: Body < ' tcx > ,
740
- ) -> Resolver < ' cx , ' tcx > {
741
- Resolver { tcx : fcx. tcx , infcx : fcx, span, body, replaced_with_error : None }
728
+ fn new ( fcx : & ' cx FnCtxt < ' cx , ' tcx > , span : & ' cx dyn Locatable ) -> Resolver < ' cx , ' tcx > {
729
+ Resolver { tcx : fcx. tcx , infcx : fcx, span, replaced_with_error : None }
742
730
}
743
731
744
732
fn report_error ( & self , p : impl Into < ty:: GenericArg < ' tcx > > ) -> ErrorGuaranteed {
@@ -747,13 +735,7 @@ impl<'cx, 'tcx> Resolver<'cx, 'tcx> {
747
735
None => self
748
736
. infcx
749
737
. err_ctxt ( )
750
- . emit_inference_failure_err (
751
- self . tcx . hir ( ) . body_owner_def_id ( self . body . id ( ) ) ,
752
- self . span . to_span ( self . tcx ) ,
753
- p. into ( ) ,
754
- E0282 ,
755
- false ,
756
- )
738
+ . emit_inference_failure_err ( self . span . to_span ( self . tcx ) , p. into ( ) , E0282 , false )
757
739
. emit ( ) ,
758
740
}
759
741
}
0 commit comments