@@ -7,7 +7,7 @@ mod suggestions;
7
7
use crate :: coercion:: DynamicCoerceMany ;
8
8
use crate :: fallback:: DivergingFallbackBehavior ;
9
9
use crate :: fn_ctxt:: checks:: DivergingBlockBehavior ;
10
- use crate :: { CoroutineTypes , Diverges , EnclosingBreakables , Inherited } ;
10
+ use crate :: { CoroutineTypes , Diverges , EnclosingBreakables , TypeckRootCtxt } ;
11
11
use hir:: def_id:: CRATE_DEF_ID ;
12
12
use rustc_errors:: { DiagCtxt , ErrorGuaranteed } ;
13
13
use rustc_hir as hir;
@@ -108,7 +108,7 @@ pub struct FnCtxt<'a, 'tcx> {
108
108
109
109
pub ( super ) enclosing_breakables : RefCell < EnclosingBreakables < ' tcx > > ,
110
110
111
- pub ( super ) inh : & ' a Inherited < ' tcx > ,
111
+ pub ( super ) root_ctxt : & ' a TypeckRootCtxt < ' tcx > ,
112
112
113
113
pub ( super ) fallback_has_occurred : Cell < bool > ,
114
114
@@ -118,12 +118,12 @@ pub struct FnCtxt<'a, 'tcx> {
118
118
119
119
impl < ' a , ' tcx > FnCtxt < ' a , ' tcx > {
120
120
pub fn new (
121
- inh : & ' a Inherited < ' tcx > ,
121
+ root_ctxt : & ' a TypeckRootCtxt < ' tcx > ,
122
122
param_env : ty:: ParamEnv < ' tcx > ,
123
123
body_id : LocalDefId ,
124
124
) -> FnCtxt < ' a , ' tcx > {
125
125
let ( diverging_fallback_behavior, diverging_block_behavior) =
126
- parse_never_type_options_attr ( inh . tcx ) ;
126
+ parse_never_type_options_attr ( root_ctxt . tcx ) ;
127
127
FnCtxt {
128
128
body_id,
129
129
param_env,
@@ -137,7 +137,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
137
137
stack : Vec :: new ( ) ,
138
138
by_id : Default :: default ( ) ,
139
139
} ) ,
140
- inh ,
140
+ root_ctxt ,
141
141
fallback_has_occurred : Cell :: new ( false ) ,
142
142
diverging_fallback_behavior,
143
143
diverging_block_behavior,
@@ -206,9 +206,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
206
206
}
207
207
208
208
impl < ' a , ' tcx > Deref for FnCtxt < ' a , ' tcx > {
209
- type Target = Inherited < ' tcx > ;
209
+ type Target = TypeckRootCtxt < ' tcx > ;
210
210
fn deref ( & self ) -> & Self :: Target {
211
- self . inh
211
+ self . root_ctxt
212
212
}
213
213
}
214
214
0 commit comments