@@ -90,12 +90,7 @@ impl<'tcx> TyCtxt<'tcx> {
90
90
Ok ( value)
91
91
} else {
92
92
let mut folder = TryNormalizeAfterErasingRegionsFolder :: new ( self , param_env) ;
93
- let result = value. fold_with ( & mut folder) ;
94
-
95
- match folder. found_normalization_error ( ) {
96
- Some ( e) => Err ( e) ,
97
- None => Ok ( result) ,
98
- }
93
+ value. fold_with ( & mut folder)
99
94
}
100
95
}
101
96
@@ -191,12 +186,11 @@ impl TypeFolder<'tcx> for NormalizeAfterErasingRegionsFolder<'tcx> {
191
186
struct TryNormalizeAfterErasingRegionsFolder < ' tcx > {
192
187
tcx : TyCtxt < ' tcx > ,
193
188
param_env : ty:: ParamEnv < ' tcx > ,
194
- normalization_error : Option < NormalizationError < ' tcx > > ,
195
189
}
196
190
197
191
impl < ' tcx > TryNormalizeAfterErasingRegionsFolder < ' tcx > {
198
192
fn new ( tcx : TyCtxt < ' tcx > , param_env : ty:: ParamEnv < ' tcx > ) -> Self {
199
- TryNormalizeAfterErasingRegionsFolder { tcx, param_env, normalization_error : None }
193
+ TryNormalizeAfterErasingRegionsFolder { tcx, param_env }
200
194
}
201
195
202
196
#[ instrument( skip( self ) , level = "debug" ) ]
@@ -209,47 +203,41 @@ impl<'tcx> TryNormalizeAfterErasingRegionsFolder<'tcx> {
209
203
210
204
self . tcx . try_normalize_generic_arg_after_erasing_regions ( arg)
211
205
}
212
-
213
- pub fn found_normalization_error ( & self ) -> Option < NormalizationError < ' tcx > > {
214
- self . normalization_error
215
- }
216
206
}
217
207
218
208
impl TypeFolder < ' tcx > for TryNormalizeAfterErasingRegionsFolder < ' tcx > {
209
+ type Error = NormalizationError < ' tcx > ;
210
+
219
211
fn tcx ( & self ) -> TyCtxt < ' tcx > {
220
212
self . tcx
221
213
}
222
214
223
- fn fold_ty ( & mut self , ty : Ty < ' tcx > ) -> Ty < ' tcx > {
215
+ fn fold_ty ( & mut self , ty : Ty < ' tcx > ) -> Result < Ty < ' tcx > , Self :: Error > {
224
216
match self . try_normalize_generic_arg_after_erasing_regions ( ty. into ( ) ) {
225
- Ok ( t) => t. expect_ty ( ) ,
226
- Err ( _) => {
227
- self . normalization_error = Some ( NormalizationError :: Type ( ty) ) ;
228
- ty
229
- }
217
+ Ok ( t) => Ok ( t. expect_ty ( ) ) ,
218
+ Err ( _) => Err ( NormalizationError :: Type ( ty) ) ,
230
219
}
231
220
}
232
221
233
- fn fold_const ( & mut self , c : & ' tcx ty:: Const < ' tcx > ) -> & ' tcx ty:: Const < ' tcx > {
222
+ fn fold_const (
223
+ & mut self ,
224
+ c : & ' tcx ty:: Const < ' tcx > ,
225
+ ) -> Result < & ' tcx ty:: Const < ' tcx > , Self :: Error > {
234
226
match self . try_normalize_generic_arg_after_erasing_regions ( c. into ( ) ) {
235
- Ok ( t) => t. expect_const ( ) ,
236
- Err ( _) => {
237
- self . normalization_error = Some ( NormalizationError :: Const ( * c) ) ;
238
- c
239
- }
227
+ Ok ( t) => Ok ( t. expect_const ( ) ) ,
228
+ Err ( _) => Err ( NormalizationError :: Const ( * c) ) ,
240
229
}
241
230
}
242
231
243
- #[ inline]
244
- fn fold_mir_const ( & mut self , c : mir:: ConstantKind < ' tcx > ) -> mir:: ConstantKind < ' tcx > {
232
+ fn fold_mir_const (
233
+ & mut self ,
234
+ c : mir:: ConstantKind < ' tcx > ,
235
+ ) -> Result < mir:: ConstantKind < ' tcx > , Self :: Error > {
245
236
// FIXME: This *probably* needs canonicalization too!
246
237
let arg = self . param_env . and ( c) ;
247
238
match self . tcx . try_normalize_mir_const_after_erasing_regions ( arg) {
248
- Ok ( c) => c,
249
- Err ( _) => {
250
- self . normalization_error = Some ( NormalizationError :: ConstantKind ( c) ) ;
251
- c
252
- }
239
+ Ok ( c) => Ok ( c) ,
240
+ Err ( _) => Err ( NormalizationError :: ConstantKind ( c) ) ,
253
241
}
254
242
}
255
243
}
0 commit comments