@@ -272,7 +272,7 @@ impl RibKind<'_> {
272
272
/// resolving, the name is looked up from inside out.
273
273
#[ derive( Debug ) ]
274
274
pub ( crate ) struct Rib < ' ra , R = Res > {
275
- pub bindings : FxHashMap < Ident , R > ,
275
+ pub bindings : FxIndexMap < Ident , R > ,
276
276
pub patterns_with_skipped_bindings : UnordMap < DefId , Vec < ( Span , Result < ( ) , ErrorGuaranteed > ) > > ,
277
277
pub kind : RibKind < ' ra > ,
278
278
}
@@ -1639,8 +1639,8 @@ impl<'a, 'ast, 'ra: 'ast, 'tcx> LateResolutionVisitor<'a, 'ast, 'ra, 'tcx> {
1639
1639
1640
1640
// Allow all following defaults to refer to this type parameter.
1641
1641
let i = & Ident :: with_dummy_span ( param. ident . name ) ;
1642
- forward_ty_ban_rib. bindings . remove ( i) ;
1643
- forward_ty_ban_rib_const_param_ty. bindings . remove ( i) ;
1642
+ forward_ty_ban_rib. bindings . swap_remove ( i) ;
1643
+ forward_ty_ban_rib_const_param_ty. bindings . swap_remove ( i) ;
1644
1644
}
1645
1645
GenericParamKind :: Const { ref ty, kw_span : _, ref default } => {
1646
1646
// Const parameters can't have param bounds.
@@ -1675,8 +1675,8 @@ impl<'a, 'ast, 'ra: 'ast, 'tcx> LateResolutionVisitor<'a, 'ast, 'ra, 'tcx> {
1675
1675
1676
1676
// Allow all following defaults to refer to this const parameter.
1677
1677
let i = & Ident :: with_dummy_span ( param. ident . name ) ;
1678
- forward_const_ban_rib. bindings . remove ( i) ;
1679
- forward_const_ban_rib_const_param_ty. bindings . remove ( i) ;
1678
+ forward_const_ban_rib. bindings . swap_remove ( i) ;
1679
+ forward_const_ban_rib_const_param_ty. bindings . swap_remove ( i) ;
1680
1680
}
1681
1681
}
1682
1682
}
@@ -2885,7 +2885,6 @@ impl<'a, 'ast, 'ra: 'ast, 'tcx> LateResolutionVisitor<'a, 'ast, 'ra, 'tcx> {
2885
2885
break ;
2886
2886
}
2887
2887
2888
- #[ allow( rustc:: potential_query_instability) ] // FIXME
2889
2888
seen_bindings
2890
2889
. extend ( parent_rib. bindings . keys ( ) . map ( |ident| ( * ident, ident. span ) ) ) ;
2891
2890
}
@@ -4000,7 +3999,7 @@ impl<'a, 'ast, 'ra: 'ast, 'tcx> LateResolutionVisitor<'a, 'ast, 'ra, 'tcx> {
4000
3999
}
4001
4000
}
4002
4001
4003
- fn innermost_rib_bindings ( & mut self , ns : Namespace ) -> & mut FxHashMap < Ident , Res > {
4002
+ fn innermost_rib_bindings ( & mut self , ns : Namespace ) -> & mut FxIndexMap < Ident , Res > {
4004
4003
& mut self . ribs [ ns] . last_mut ( ) . unwrap ( ) . bindings
4005
4004
}
4006
4005
0 commit comments