@@ -10,7 +10,7 @@ use crate::ty::visit::{TypeSuperVisitable, TypeVisitable, TypeVisitor};
10
10
use crate :: ty:: { self , AliasTy , InferConst , Lift , Term , TermKind , Ty , TyCtxt } ;
11
11
use rustc_hir:: def:: Namespace ;
12
12
use rustc_target:: abi:: TyAndLayout ;
13
- use rustc_type_ir:: { ConstKind , DebugWithInfcx , InferCtxtLike , OptWithInfcx } ;
13
+ use rustc_type_ir:: { ConstKind , DebugWithInfcx , InferCtxtLike , WithInfcx } ;
14
14
15
15
use std:: fmt:: { self , Debug } ;
16
16
use std:: ops:: ControlFlow ;
@@ -87,12 +87,12 @@ impl fmt::Debug for ty::FreeRegion {
87
87
88
88
impl < ' tcx > fmt:: Debug for ty:: FnSig < ' tcx > {
89
89
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
90
- OptWithInfcx :: new_no_ctx ( self ) . fmt ( f)
90
+ WithInfcx :: with_no_infcx ( self ) . fmt ( f)
91
91
}
92
92
}
93
93
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: FnSig < ' tcx > {
94
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
95
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
94
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
95
+ this : WithInfcx < ' _ , Infcx , & Self > ,
96
96
f : & mut core:: fmt:: Formatter < ' _ > ,
97
97
) -> core:: fmt:: Result {
98
98
let sig = this. data ;
@@ -147,8 +147,8 @@ impl<'tcx> fmt::Debug for ty::TraitRef<'tcx> {
147
147
}
148
148
149
149
impl < ' tcx > ty:: DebugWithInfcx < TyCtxt < ' tcx > > for Ty < ' tcx > {
150
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
151
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
150
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
151
+ this : WithInfcx < ' _ , Infcx , & Self > ,
152
152
f : & mut core:: fmt:: Formatter < ' _ > ,
153
153
) -> core:: fmt:: Result {
154
154
this. data . fmt ( f)
@@ -236,12 +236,12 @@ impl<'tcx> fmt::Debug for ty::PredicateKind<'tcx> {
236
236
237
237
impl < ' tcx > fmt:: Debug for AliasTy < ' tcx > {
238
238
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
239
- OptWithInfcx :: new_no_ctx ( self ) . fmt ( f)
239
+ WithInfcx :: with_no_infcx ( self ) . fmt ( f)
240
240
}
241
241
}
242
242
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for AliasTy < ' tcx > {
243
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
244
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
243
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
244
+ this : WithInfcx < ' _ , Infcx , & Self > ,
245
245
f : & mut core:: fmt:: Formatter < ' _ > ,
246
246
) -> core:: fmt:: Result {
247
247
f. debug_struct ( "AliasTy" )
@@ -261,12 +261,12 @@ impl<'tcx> fmt::Debug for ty::InferConst<'tcx> {
261
261
}
262
262
}
263
263
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: InferConst < ' tcx > {
264
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
265
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
264
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
265
+ this : WithInfcx < ' _ , Infcx , & Self > ,
266
266
f : & mut core:: fmt:: Formatter < ' _ > ,
267
267
) -> core:: fmt:: Result {
268
268
use ty:: InferConst :: * ;
269
- match this. infcx . and_then ( |infcx| infcx . universe_of_ct ( * this. data ) ) {
269
+ match this. infcx . universe_of_ct ( * this. data ) {
270
270
None => write ! ( f, "{:?}" , this. data) ,
271
271
Some ( universe) => match * this. data {
272
272
Var ( vid) => write ! ( f, "?{}_{}c" , vid. index, universe. index( ) ) ,
@@ -281,12 +281,12 @@ impl<'tcx> DebugWithInfcx<TyCtxt<'tcx>> for ty::InferConst<'tcx> {
281
281
282
282
impl < ' tcx > fmt:: Debug for ty:: consts:: Expr < ' tcx > {
283
283
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
284
- OptWithInfcx :: new_no_ctx ( self ) . fmt ( f)
284
+ WithInfcx :: with_no_infcx ( self ) . fmt ( f)
285
285
}
286
286
}
287
287
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: consts:: Expr < ' tcx > {
288
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
289
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
288
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
289
+ this : WithInfcx < ' _ , Infcx , & Self > ,
290
290
f : & mut core:: fmt:: Formatter < ' _ > ,
291
291
) -> core:: fmt:: Result {
292
292
match this. data {
@@ -314,12 +314,12 @@ impl<'tcx> DebugWithInfcx<TyCtxt<'tcx>> for ty::consts::Expr<'tcx> {
314
314
315
315
impl < ' tcx > fmt:: Debug for ty:: UnevaluatedConst < ' tcx > {
316
316
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
317
- OptWithInfcx :: new_no_ctx ( self ) . fmt ( f)
317
+ WithInfcx :: with_no_infcx ( self ) . fmt ( f)
318
318
}
319
319
}
320
320
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: UnevaluatedConst < ' tcx > {
321
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
322
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
321
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
322
+ this : WithInfcx < ' _ , Infcx , & Self > ,
323
323
f : & mut core:: fmt:: Formatter < ' _ > ,
324
324
) -> core:: fmt:: Result {
325
325
f. debug_struct ( "UnevaluatedConst" )
@@ -331,12 +331,12 @@ impl<'tcx> DebugWithInfcx<TyCtxt<'tcx>> for ty::UnevaluatedConst<'tcx> {
331
331
332
332
impl < ' tcx > fmt:: Debug for ty:: Const < ' tcx > {
333
333
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
334
- OptWithInfcx :: new_no_ctx ( self ) . fmt ( f)
334
+ WithInfcx :: with_no_infcx ( self ) . fmt ( f)
335
335
}
336
336
}
337
337
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: Const < ' tcx > {
338
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
339
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
338
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
339
+ this : WithInfcx < ' _ , Infcx , & Self > ,
340
340
f : & mut core:: fmt:: Formatter < ' _ > ,
341
341
) -> core:: fmt:: Result {
342
342
// If this is a value, we spend some effort to make it look nice.
@@ -392,8 +392,8 @@ impl<'tcx> fmt::Debug for GenericArg<'tcx> {
392
392
}
393
393
}
394
394
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for GenericArg < ' tcx > {
395
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
396
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
395
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
396
+ this : WithInfcx < ' _ , Infcx , & Self > ,
397
397
f : & mut core:: fmt:: Formatter < ' _ > ,
398
398
) -> core:: fmt:: Result {
399
399
match this. data . unpack ( ) {
@@ -410,29 +410,29 @@ impl<'tcx> fmt::Debug for Region<'tcx> {
410
410
}
411
411
}
412
412
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for Region < ' tcx > {
413
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
414
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
413
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
414
+ this : WithInfcx < ' _ , Infcx , & Self > ,
415
415
f : & mut core:: fmt:: Formatter < ' _ > ,
416
416
) -> core:: fmt:: Result {
417
417
write ! ( f, "{:?}" , & this. map( |data| data. kind( ) ) )
418
418
}
419
419
}
420
420
421
421
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: RegionVid {
422
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
423
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
422
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
423
+ this : WithInfcx < ' _ , Infcx , & Self > ,
424
424
f : & mut core:: fmt:: Formatter < ' _ > ,
425
425
) -> core:: fmt:: Result {
426
- match this. infcx . and_then ( |infcx| infcx . universe_of_lt ( * this. data ) ) {
426
+ match this. infcx . universe_of_lt ( * this. data ) {
427
427
Some ( universe) => write ! ( f, "'?{}_{}" , this. data. index( ) , universe. index( ) ) ,
428
428
None => write ! ( f, "{:?}" , this. data) ,
429
429
}
430
430
}
431
431
}
432
432
433
433
impl < ' tcx , T : DebugWithInfcx < TyCtxt < ' tcx > > > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: Binder < ' tcx , T > {
434
- fn fmt < InfCtx : InferCtxtLike < TyCtxt < ' tcx > > > (
435
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , InfCtx , & Self > ,
434
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
435
+ this : WithInfcx < ' _ , Infcx , & Self > ,
436
436
f : & mut core:: fmt:: Formatter < ' _ > ,
437
437
) -> core:: fmt:: Result {
438
438
f. debug_tuple ( "Binder" )
0 commit comments