4 files changed +7
-17
lines changed Original file line number Diff line number Diff line change @@ -195,10 +195,6 @@ impl<'tcx> rustc_type_ir::inherent::Const<TyCtxt<'tcx>> for Const<'tcx> {
195
195
fn ty ( self ) -> Ty < ' tcx > {
196
196
self . ty ( )
197
197
}
198
-
199
- fn into_term ( self ) -> ty:: Term < ' tcx > {
200
- self . into ( )
201
- }
202
198
}
203
199
204
200
impl < ' tcx > Const < ' tcx > {
Original file line number Diff line number Diff line change @@ -1660,10 +1660,6 @@ impl<'tcx> rustc_type_ir::inherent::Ty<TyCtxt<'tcx>> for Ty<'tcx> {
1660
1660
) -> Self {
1661
1661
Ty :: new_alias ( interner, kind, alias_ty)
1662
1662
}
1663
-
1664
- fn into_term ( self ) -> ty:: Term < ' tcx > {
1665
- self . into ( )
1666
- }
1667
1663
}
1668
1664
1669
1665
/// Type utilities
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ pub trait Ty<I: Interner<Ty = Self>>:
15
15
+ Hash
16
16
+ Eq
17
17
+ Into < I :: GenericArg >
18
+ + Into < I :: Term >
18
19
+ IntoKind < Kind = TyKind < I > >
19
20
+ TypeSuperVisitable < I >
20
21
+ TypeSuperFoldable < I >
@@ -23,8 +24,6 @@ pub trait Ty<I: Interner<Ty = Self>>:
23
24
fn new_anon_bound ( interner : I , debruijn : DebruijnIndex , var : BoundVar ) -> Self ;
24
25
25
26
fn new_alias ( interner : I , kind : AliasTyKind , alias_ty : AliasTy < I > ) -> Self ;
26
-
27
- fn into_term ( self ) -> I :: Term ;
28
27
}
29
28
30
29
pub trait Region < I : Interner < Region = Self > > :
@@ -41,6 +40,7 @@ pub trait Const<I: Interner<Const = Self>>:
41
40
+ Hash
42
41
+ Eq
43
42
+ Into < I :: GenericArg >
43
+ + Into < I :: Term >
44
44
+ IntoKind < Kind = ConstKind < I > >
45
45
+ TypeSuperVisitable < I >
46
46
+ TypeSuperFoldable < I >
@@ -51,8 +51,6 @@ pub trait Const<I: Interner<Const = Self>>:
51
51
fn new_unevaluated ( interner : I , uv : UnevaluatedConst < I > , ty : I :: Ty ) -> Self ;
52
52
53
53
fn ty ( self ) -> I :: Ty ;
54
-
55
- fn into_term ( self ) -> I :: Term ;
56
54
}
57
55
58
56
pub trait GenericsOf < I : Interner < GenericsOf = Self > > {
Original file line number Diff line number Diff line change @@ -437,32 +437,32 @@ impl<I: Interner> AliasTerm<I> {
437
437
AliasTyKind :: Projection ,
438
438
AliasTy { def_id : self . def_id , args : self . args , _use_alias_ty_new_instead : ( ) } ,
439
439
)
440
- . into_term ( ) ,
440
+ . into ( ) ,
441
441
AliasTermKind :: InherentTy => Ty :: new_alias (
442
442
interner,
443
443
AliasTyKind :: Inherent ,
444
444
AliasTy { def_id : self . def_id , args : self . args , _use_alias_ty_new_instead : ( ) } ,
445
445
)
446
- . into_term ( ) ,
446
+ . into ( ) ,
447
447
AliasTermKind :: OpaqueTy => Ty :: new_alias (
448
448
interner,
449
449
AliasTyKind :: Opaque ,
450
450
AliasTy { def_id : self . def_id , args : self . args , _use_alias_ty_new_instead : ( ) } ,
451
451
)
452
- . into_term ( ) ,
452
+ . into ( ) ,
453
453
AliasTermKind :: WeakTy => Ty :: new_alias (
454
454
interner,
455
455
AliasTyKind :: Weak ,
456
456
AliasTy { def_id : self . def_id , args : self . args , _use_alias_ty_new_instead : ( ) } ,
457
457
)
458
- . into_term ( ) ,
458
+ . into ( ) ,
459
459
AliasTermKind :: UnevaluatedConst | AliasTermKind :: ProjectionConst => {
460
460
I :: Const :: new_unevaluated (
461
461
interner,
462
462
UnevaluatedConst :: new ( self . def_id , self . args ) ,
463
463
interner. type_of_instantiated ( self . def_id , self . args ) ,
464
464
)
465
- . into_term ( )
465
+ . into ( )
466
466
}
467
467
}
468
468
}
0 commit comments