@@ -1260,7 +1260,7 @@ impl<'a, 'tcx> ParameterEnvironment<'tcx> {
1260
1260
match tcx. map . find ( id) {
1261
1261
Some ( ast_map:: NodeImplItem ( ref impl_item) ) => {
1262
1262
match impl_item. node {
1263
- hir:: ImplItemKind :: Type ( _) => {
1263
+ hir:: ImplItemKind :: Type ( _) | hir :: ImplItemKind :: Const ( _ , _ ) => {
1264
1264
// associated types don't have their own entry (for some reason),
1265
1265
// so for now just grab environment for the impl
1266
1266
let impl_id = tcx. map . get_parent ( id) ;
@@ -1272,15 +1272,6 @@ impl<'a, 'tcx> ParameterEnvironment<'tcx> {
1272
1272
& predicates,
1273
1273
tcx. region_maps . item_extent ( id) )
1274
1274
}
1275
- hir:: ImplItemKind :: Const ( _, _) => {
1276
- let def_id = tcx. map . local_def_id ( id) ;
1277
- let scheme = tcx. lookup_item_type ( def_id) ;
1278
- let predicates = tcx. lookup_predicates ( def_id) ;
1279
- tcx. construct_parameter_environment ( impl_item. span ,
1280
- & scheme. generics ,
1281
- & predicates,
1282
- tcx. region_maps . item_extent ( id) )
1283
- }
1284
1275
hir:: ImplItemKind :: Method ( _, ref body) => {
1285
1276
let method_def_id = tcx. map . local_def_id ( id) ;
1286
1277
match tcx. impl_or_trait_item ( method_def_id) {
@@ -1303,7 +1294,7 @@ impl<'a, 'tcx> ParameterEnvironment<'tcx> {
1303
1294
}
1304
1295
Some ( ast_map:: NodeTraitItem ( trait_item) ) => {
1305
1296
match trait_item. node {
1306
- hir:: TypeTraitItem ( ..) => {
1297
+ hir:: TypeTraitItem ( ..) | hir :: ConstTraitItem ( .. ) => {
1307
1298
// associated types don't have their own entry (for some reason),
1308
1299
// so for now just grab environment for the trait
1309
1300
let trait_id = tcx. map . get_parent ( id) ;
@@ -1315,15 +1306,6 @@ impl<'a, 'tcx> ParameterEnvironment<'tcx> {
1315
1306
& predicates,
1316
1307
tcx. region_maps . item_extent ( id) )
1317
1308
}
1318
- hir:: ConstTraitItem ( ..) => {
1319
- let def_id = tcx. map . local_def_id ( id) ;
1320
- let scheme = tcx. lookup_item_type ( def_id) ;
1321
- let predicates = tcx. lookup_predicates ( def_id) ;
1322
- tcx. construct_parameter_environment ( trait_item. span ,
1323
- & scheme. generics ,
1324
- & predicates,
1325
- tcx. region_maps . item_extent ( id) )
1326
- }
1327
1309
hir:: MethodTraitItem ( _, ref body) => {
1328
1310
// Use call-site for extent (unless this is a
1329
1311
// trait method with no default; then fallback
0 commit comments