@@ -1137,11 +1137,11 @@ impl<'a, 'tcx> Rebuilder<'a, 'tcx> {
1137
1137
}
1138
1138
1139
1139
fn rebuild_ty_params ( & self ,
1140
- ty_params : P < [ hir:: TyParam ] > ,
1140
+ ty_params : hir :: HirVec < hir:: TyParam > ,
1141
1141
lifetime : hir:: Lifetime ,
1142
1142
region_names : & HashSet < ast:: Name > )
1143
- -> P < [ hir:: TyParam ] > {
1144
- ty_params. map ( |ty_param| {
1143
+ -> hir :: HirVec < hir:: TyParam > {
1144
+ ty_params. iter ( ) . map ( |ty_param| {
1145
1145
let bounds = self . rebuild_ty_param_bounds ( ty_param. bounds . clone ( ) ,
1146
1146
lifetime,
1147
1147
region_names) ;
@@ -1152,15 +1152,15 @@ impl<'a, 'tcx> Rebuilder<'a, 'tcx> {
1152
1152
default : ty_param. default . clone ( ) ,
1153
1153
span : ty_param. span ,
1154
1154
}
1155
- } )
1155
+ } ) . collect ( )
1156
1156
}
1157
1157
1158
1158
fn rebuild_ty_param_bounds ( & self ,
1159
1159
ty_param_bounds : hir:: TyParamBounds ,
1160
1160
lifetime : hir:: Lifetime ,
1161
1161
region_names : & HashSet < ast:: Name > )
1162
1162
-> hir:: TyParamBounds {
1163
- ty_param_bounds. map ( |tpb| {
1163
+ ty_param_bounds. iter ( ) . map ( |tpb| {
1164
1164
match tpb {
1165
1165
& hir:: RegionTyParamBound ( lt) => {
1166
1166
// FIXME -- it's unclear whether I'm supposed to
@@ -1196,7 +1196,7 @@ impl<'a, 'tcx> Rebuilder<'a, 'tcx> {
1196
1196
} , modifier)
1197
1197
}
1198
1198
}
1199
- } )
1199
+ } ) . collect ( )
1200
1200
}
1201
1201
1202
1202
fn rebuild_expl_self ( & self ,
@@ -1232,7 +1232,7 @@ impl<'a, 'tcx> Rebuilder<'a, 'tcx> {
1232
1232
add : & Vec < hir:: Lifetime > ,
1233
1233
keep : & HashSet < ast:: Name > ,
1234
1234
remove : & HashSet < ast:: Name > ,
1235
- ty_params : P < [ hir:: TyParam ] > ,
1235
+ ty_params : hir :: HirVec < hir:: TyParam > ,
1236
1236
where_clause : hir:: WhereClause )
1237
1237
-> hir:: Generics {
1238
1238
let mut lifetimes = Vec :: new ( ) ;
@@ -1482,10 +1482,10 @@ impl<'a, 'tcx> Rebuilder<'a, 'tcx> {
1482
1482
}
1483
1483
}
1484
1484
}
1485
- let new_types = data. types . map ( |t| {
1485
+ let new_types = data. types . iter ( ) . map ( |t| {
1486
1486
self . rebuild_arg_ty_or_output ( & * * t, lifetime, anon_nums, region_names)
1487
- } ) ;
1488
- let new_bindings = data. bindings . map ( |b| {
1487
+ } ) . collect ( ) ;
1488
+ let new_bindings = data. bindings . iter ( ) . map ( |b| {
1489
1489
hir:: TypeBinding {
1490
1490
id : b. id ,
1491
1491
name : b. name ,
@@ -1495,7 +1495,7 @@ impl<'a, 'tcx> Rebuilder<'a, 'tcx> {
1495
1495
region_names) ,
1496
1496
span : b. span
1497
1497
}
1498
- } ) ;
1498
+ } ) . collect ( ) ;
1499
1499
hir:: AngleBracketedParameters ( hir:: AngleBracketedParameterData {
1500
1500
lifetimes : new_lts. into ( ) ,
1501
1501
types : new_types,
0 commit comments