@@ -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 ;
@@ -89,12 +89,12 @@ impl fmt::Debug for ty::FreeRegion {
89
89
90
90
impl < ' tcx > fmt:: Debug for ty:: FnSig < ' tcx > {
91
91
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
92
- OptWithInfcx :: new_no_ctx ( self ) . fmt ( f)
92
+ WithInfcx :: with_no_infcx ( self ) . fmt ( f)
93
93
}
94
94
}
95
95
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: FnSig < ' tcx > {
96
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
97
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
96
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
97
+ this : WithInfcx < ' _ , Infcx , & Self > ,
98
98
f : & mut core:: fmt:: Formatter < ' _ > ,
99
99
) -> core:: fmt:: Result {
100
100
let sig = this. data ;
@@ -149,8 +149,8 @@ impl<'tcx> fmt::Debug for ty::TraitRef<'tcx> {
149
149
}
150
150
151
151
impl < ' tcx > ty:: DebugWithInfcx < TyCtxt < ' tcx > > for Ty < ' tcx > {
152
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
153
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
152
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
153
+ this : WithInfcx < ' _ , Infcx , & Self > ,
154
154
f : & mut core:: fmt:: Formatter < ' _ > ,
155
155
) -> core:: fmt:: Result {
156
156
this. data . fmt ( f)
@@ -238,12 +238,12 @@ impl<'tcx> fmt::Debug for ty::PredicateKind<'tcx> {
238
238
239
239
impl < ' tcx > fmt:: Debug for AliasTy < ' tcx > {
240
240
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
241
- OptWithInfcx :: new_no_ctx ( self ) . fmt ( f)
241
+ WithInfcx :: with_no_infcx ( self ) . fmt ( f)
242
242
}
243
243
}
244
244
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for AliasTy < ' tcx > {
245
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
246
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
245
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
246
+ this : WithInfcx < ' _ , Infcx , & Self > ,
247
247
f : & mut core:: fmt:: Formatter < ' _ > ,
248
248
) -> core:: fmt:: Result {
249
249
f. debug_struct ( "AliasTy" )
@@ -263,12 +263,12 @@ impl<'tcx> fmt::Debug for ty::InferConst<'tcx> {
263
263
}
264
264
}
265
265
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: InferConst < ' tcx > {
266
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
267
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
266
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
267
+ this : WithInfcx < ' _ , Infcx , & Self > ,
268
268
f : & mut core:: fmt:: Formatter < ' _ > ,
269
269
) -> core:: fmt:: Result {
270
270
use ty:: InferConst :: * ;
271
- match this. infcx . and_then ( |infcx| infcx . universe_of_ct ( * this. data ) ) {
271
+ match this. infcx . universe_of_ct ( * this. data ) {
272
272
None => write ! ( f, "{:?}" , this. data) ,
273
273
Some ( universe) => match * this. data {
274
274
Var ( vid) => write ! ( f, "?{}_{}c" , vid. index, universe. index( ) ) ,
@@ -283,12 +283,12 @@ impl<'tcx> DebugWithInfcx<TyCtxt<'tcx>> for ty::InferConst<'tcx> {
283
283
284
284
impl < ' tcx > fmt:: Debug for ty:: consts:: Expr < ' tcx > {
285
285
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
286
- OptWithInfcx :: new_no_ctx ( self ) . fmt ( f)
286
+ WithInfcx :: with_no_infcx ( self ) . fmt ( f)
287
287
}
288
288
}
289
289
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: consts:: Expr < ' tcx > {
290
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
291
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
290
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
291
+ this : WithInfcx < ' _ , Infcx , & Self > ,
292
292
f : & mut core:: fmt:: Formatter < ' _ > ,
293
293
) -> core:: fmt:: Result {
294
294
match this. data {
@@ -316,12 +316,12 @@ impl<'tcx> DebugWithInfcx<TyCtxt<'tcx>> for ty::consts::Expr<'tcx> {
316
316
317
317
impl < ' tcx > fmt:: Debug for ty:: UnevaluatedConst < ' tcx > {
318
318
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
319
- OptWithInfcx :: new_no_ctx ( self ) . fmt ( f)
319
+ WithInfcx :: with_no_infcx ( self ) . fmt ( f)
320
320
}
321
321
}
322
322
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: UnevaluatedConst < ' tcx > {
323
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
324
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
323
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
324
+ this : WithInfcx < ' _ , Infcx , & Self > ,
325
325
f : & mut core:: fmt:: Formatter < ' _ > ,
326
326
) -> core:: fmt:: Result {
327
327
f. debug_struct ( "UnevaluatedConst" )
@@ -333,12 +333,12 @@ impl<'tcx> DebugWithInfcx<TyCtxt<'tcx>> for ty::UnevaluatedConst<'tcx> {
333
333
334
334
impl < ' tcx > fmt:: Debug for ty:: Const < ' tcx > {
335
335
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
336
- OptWithInfcx :: new_no_ctx ( self ) . fmt ( f)
336
+ WithInfcx :: with_no_infcx ( self ) . fmt ( f)
337
337
}
338
338
}
339
339
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: Const < ' tcx > {
340
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
341
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
340
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
341
+ this : WithInfcx < ' _ , Infcx , & Self > ,
342
342
f : & mut core:: fmt:: Formatter < ' _ > ,
343
343
) -> core:: fmt:: Result {
344
344
// If this is a value, we spend some effort to make it look nice.
@@ -395,8 +395,8 @@ impl<'tcx> fmt::Debug for GenericArg<'tcx> {
395
395
}
396
396
}
397
397
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for GenericArg < ' tcx > {
398
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
399
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
398
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
399
+ this : WithInfcx < ' _ , Infcx , & Self > ,
400
400
f : & mut core:: fmt:: Formatter < ' _ > ,
401
401
) -> core:: fmt:: Result {
402
402
match this. data . unpack ( ) {
@@ -413,29 +413,29 @@ impl<'tcx> fmt::Debug for Region<'tcx> {
413
413
}
414
414
}
415
415
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for Region < ' tcx > {
416
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
417
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
416
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
417
+ this : WithInfcx < ' _ , Infcx , & Self > ,
418
418
f : & mut core:: fmt:: Formatter < ' _ > ,
419
419
) -> core:: fmt:: Result {
420
420
write ! ( f, "{:?}" , & this. map( |data| data. kind( ) ) )
421
421
}
422
422
}
423
423
424
424
impl < ' tcx > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: RegionVid {
425
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
426
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
425
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
426
+ this : WithInfcx < ' _ , Infcx , & Self > ,
427
427
f : & mut core:: fmt:: Formatter < ' _ > ,
428
428
) -> core:: fmt:: Result {
429
- match this. infcx . and_then ( |infcx| infcx . universe_of_lt ( * this. data ) ) {
429
+ match this. infcx . universe_of_lt ( * this. data ) {
430
430
Some ( universe) => write ! ( f, "'?{}_{}" , this. data. index( ) , universe. index( ) ) ,
431
431
None => write ! ( f, "{:?}" , this. data) ,
432
432
}
433
433
}
434
434
}
435
435
436
436
impl < ' tcx , T : DebugWithInfcx < TyCtxt < ' tcx > > > DebugWithInfcx < TyCtxt < ' tcx > > for ty:: Binder < ' tcx , T > {
437
- fn fmt < Infcx : InferCtxtLike < TyCtxt < ' tcx > > > (
438
- this : OptWithInfcx < ' _ , TyCtxt < ' tcx > , Infcx , & Self > ,
437
+ fn fmt < Infcx : InferCtxtLike < Interner = TyCtxt < ' tcx > > > (
438
+ this : WithInfcx < ' _ , Infcx , & Self > ,
439
439
f : & mut core:: fmt:: Formatter < ' _ > ,
440
440
) -> core:: fmt:: Result {
441
441
f. debug_tuple ( "Binder" )
0 commit comments