@@ -22,7 +22,7 @@ use rustc_span::symbol::{sym, Symbol};
22
22
use rustc_span:: { Span , DUMMY_SP } ;
23
23
use rustc_target:: abi:: { FieldIdx , VariantIdx , FIRST_VARIANT } ;
24
24
use rustc_target:: spec:: abi:: { self , Abi } ;
25
- use std:: assert_matches:: { assert_matches , debug_assert_matches} ;
25
+ use std:: assert_matches:: debug_assert_matches;
26
26
use std:: borrow:: Cow ;
27
27
use std:: iter;
28
28
use std:: ops:: { ControlFlow , Deref , Range } ;
@@ -1137,8 +1137,8 @@ pub struct AliasTerm<'tcx> {
1137
1137
/// aka. `tcx.parent(def_id)`.
1138
1138
pub def_id : DefId ,
1139
1139
1140
- /// This field exists to prevent the creation of `AliasTy ` without using
1141
- /// [AliasTy ::new].
1140
+ /// This field exists to prevent the creation of `AliasTerm ` without using
1141
+ /// [AliasTerm ::new].
1142
1142
_use_alias_term_new_instead : ( ) ,
1143
1143
}
1144
1144
@@ -1202,13 +1202,15 @@ impl<'tcx> AliasTerm<'tcx> {
1202
1202
}
1203
1203
1204
1204
pub fn expect_ty ( self , tcx : TyCtxt < ' tcx > ) -> AliasTy < ' tcx > {
1205
- assert_matches ! (
1206
- self . kind( tcx) ,
1205
+ match self . kind ( tcx) {
1207
1206
ty:: AliasTermKind :: ProjectionTy
1208
- | ty:: AliasTermKind :: OpaqueTy
1209
- | ty:: AliasTermKind :: WeakTy
1210
- | ty:: AliasTermKind :: InherentTy
1211
- ) ;
1207
+ | ty:: AliasTermKind :: InherentTy
1208
+ | ty:: AliasTermKind :: OpaqueTy
1209
+ | ty:: AliasTermKind :: WeakTy => { }
1210
+ ty:: AliasTermKind :: UnevaluatedConst | ty:: AliasTermKind :: ProjectionConst => {
1211
+ bug ! ( "Cannot turn `UnevaluatedConst` into `AliasTy`" )
1212
+ }
1213
+ }
1212
1214
ty:: AliasTy { def_id : self . def_id , args : self . args , _use_alias_ty_new_instead : ( ) }
1213
1215
}
1214
1216
@@ -1223,13 +1225,14 @@ impl<'tcx> AliasTerm<'tcx> {
1223
1225
}
1224
1226
DefKind :: OpaqueTy => ty:: AliasTermKind :: OpaqueTy ,
1225
1227
DefKind :: TyAlias => ty:: AliasTermKind :: WeakTy ,
1226
- DefKind :: AssocConst | DefKind :: AnonConst => ty:: AliasTermKind :: UnevaluatedConst ,
1228
+ DefKind :: AnonConst => ty:: AliasTermKind :: UnevaluatedConst ,
1229
+ DefKind :: AssocConst => ty:: AliasTermKind :: ProjectionConst ,
1227
1230
kind => bug ! ( "unexpected DefKind in AliasTy: {kind:?}" ) ,
1228
1231
}
1229
1232
}
1230
1233
}
1231
1234
1232
- /// The following methods work only with (trait) associated type projections.
1235
+ /// The following methods work only with (trait) associated item projections.
1233
1236
impl < ' tcx > AliasTerm < ' tcx > {
1234
1237
pub fn self_ty ( self ) -> Ty < ' tcx > {
1235
1238
self . args . type_at ( 0 )
@@ -1269,7 +1272,6 @@ impl<'tcx> AliasTerm<'tcx> {
1269
1272
self ,
1270
1273
tcx : TyCtxt < ' tcx > ,
1271
1274
) -> ( ty:: TraitRef < ' tcx > , & ' tcx [ ty:: GenericArg < ' tcx > ] ) {
1272
- debug_assert ! ( matches!( tcx. def_kind( self . def_id) , DefKind :: AssocTy | DefKind :: AssocConst ) ) ;
1273
1275
let trait_def_id = self . trait_def_id ( tcx) ;
1274
1276
let trait_generics = tcx. generics_of ( trait_def_id) ;
1275
1277
(
@@ -1304,12 +1306,14 @@ impl<'tcx> AliasTerm<'tcx> {
1304
1306
AliasTy { def_id : self . def_id , args : self . args , _use_alias_ty_new_instead : ( ) } ,
1305
1307
)
1306
1308
. into ( ) ,
1307
- ty:: AliasTermKind :: UnevaluatedConst => ty:: Const :: new_unevaluated (
1308
- tcx,
1309
- ty:: UnevaluatedConst :: new ( self . def_id , self . args ) ,
1310
- tcx. type_of ( self . def_id ) . instantiate ( tcx, self . args ) ,
1311
- )
1312
- . into ( ) ,
1309
+ ty:: AliasTermKind :: UnevaluatedConst | ty:: AliasTermKind :: ProjectionConst => {
1310
+ ty:: Const :: new_unevaluated (
1311
+ tcx,
1312
+ ty:: UnevaluatedConst :: new ( self . def_id , self . args ) ,
1313
+ tcx. type_of ( self . def_id ) . instantiate ( tcx, self . args ) ,
1314
+ )
1315
+ . into ( )
1316
+ }
1313
1317
}
1314
1318
}
1315
1319
}
@@ -1358,7 +1362,7 @@ pub struct AliasTy<'tcx> {
1358
1362
/// aka. `tcx.parent(def_id)`.
1359
1363
pub def_id : DefId ,
1360
1364
1361
- /// This field exists to prevent the creation of `AliasTy ` without using
1365
+ /// This field exists to prevent the creation of `AliasT ` without using
1362
1366
/// [AliasTy::new].
1363
1367
_use_alias_ty_new_instead : ( ) ,
1364
1368
}
@@ -1422,7 +1426,6 @@ impl<'tcx> AliasTy<'tcx> {
1422
1426
self ,
1423
1427
tcx : TyCtxt < ' tcx > ,
1424
1428
) -> ( ty:: TraitRef < ' tcx > , & ' tcx [ ty:: GenericArg < ' tcx > ] ) {
1425
- debug_assert ! ( matches!( tcx. def_kind( self . def_id) , DefKind :: AssocTy | DefKind :: AssocConst ) ) ;
1426
1429
let trait_def_id = self . trait_def_id ( tcx) ;
1427
1430
let trait_generics = tcx. generics_of ( trait_def_id) ;
1428
1431
(
0 commit comments