@@ -50,13 +50,17 @@ impl Generics {
50
50
}
51
51
52
52
pub ( crate ) fn iter_id ( & self ) -> impl Iterator < Item = GenericParamId > + ' _ {
53
- self . iter ( ) . map ( | ( id , _ ) | id )
53
+ self . iter_self_id ( ) . chain ( self . iter_parent_id ( ) )
54
54
}
55
55
56
56
pub ( crate ) fn iter_self_id ( & self ) -> impl Iterator < Item = GenericParamId > + ' _ {
57
57
self . iter_self ( ) . map ( |( id, _) | id)
58
58
}
59
59
60
+ fn iter_parent_id ( & self ) -> impl Iterator < Item = GenericParamId > + ' _ {
61
+ self . iter_parent ( ) . map ( |( id, _) | id)
62
+ }
63
+
60
64
pub ( crate ) fn iter_self_type_or_consts (
61
65
& self ,
62
66
) -> impl DoubleEndedIterator < Item = ( LocalTypeOrConstParamId , & TypeOrConstParamData ) > {
@@ -81,7 +85,7 @@ impl Generics {
81
85
}
82
86
83
87
/// Iterator over types and const params of parent.
84
- pub ( crate ) fn iter_parent (
88
+ fn iter_parent (
85
89
& self ,
86
90
) -> impl DoubleEndedIterator < Item = ( GenericParamId , GenericParamDataRef < ' _ > ) > + ' _ {
87
91
self . parent_generics ( ) . into_iter ( ) . flat_map ( |it| {
@@ -108,7 +112,6 @@ impl Generics {
108
112
let mut type_params = 0 ;
109
113
let mut impl_trait_params = 0 ;
110
114
let mut const_params = 0 ;
111
- let mut lifetime_params = 0 ;
112
115
self . params . iter_type_or_consts ( ) . for_each ( |( _, data) | match data {
113
116
TypeOrConstParamData :: TypeParamData ( p) => match p. provenance {
114
117
TypeParamProvenance :: TypeParamList => type_params += 1 ,
@@ -118,52 +121,44 @@ impl Generics {
118
121
TypeOrConstParamData :: ConstParamData ( _) => const_params += 1 ,
119
122
} ) ;
120
123
121
- self . params . iter_lt ( ) . for_each ( | ( _ , _ ) | lifetime_params += 1 ) ;
124
+ let lifetime_params = self . params . iter_lt ( ) . count ( ) ;
122
125
123
126
let parent_len = self . parent_generics ( ) . map_or ( 0 , Generics :: len) ;
124
127
( parent_len, self_param, type_params, const_params, impl_trait_params, lifetime_params)
125
128
}
126
129
127
130
pub ( crate ) fn type_or_const_param_idx ( & self , param : TypeOrConstParamId ) -> Option < usize > {
128
- Some ( self . find_type_or_const_param ( param) ? . 0 )
131
+ self . find_type_or_const_param ( param)
129
132
}
130
133
131
- fn find_type_or_const_param (
132
- & self ,
133
- param : TypeOrConstParamId ,
134
- ) -> Option < ( usize , & TypeOrConstParamData ) > {
134
+ fn find_type_or_const_param ( & self , param : TypeOrConstParamId ) -> Option < usize > {
135
135
if param. parent == self . def {
136
136
let idx = param. local_id . into_raw ( ) . into_u32 ( ) as usize ;
137
- if idx >= self . params . type_or_consts . len ( ) {
138
- return None ;
139
- }
140
- Some ( ( idx, & self . params . type_or_consts [ param. local_id ] ) )
137
+ debug_assert ! ( idx <= self . params. type_or_consts. len( ) ) ;
138
+ Some ( idx)
141
139
} else {
140
+ debug_assert_eq ! ( self . parent_generics( ) . map( |it| it. def) , Some ( param. parent) ) ;
142
141
self . parent_generics ( )
143
142
. and_then ( |g| g. find_type_or_const_param ( param) )
144
143
// Remember that parent parameters come after parameters for self.
145
- . map ( |( idx, data ) | ( self . len_self ( ) + idx, data ) )
144
+ . map ( |idx| self . len_self ( ) + idx)
146
145
}
147
146
}
148
147
149
148
pub ( crate ) fn lifetime_idx ( & self , lifetime : LifetimeParamId ) -> Option < usize > {
150
- Some ( self . find_lifetime ( lifetime) ? . 0 )
149
+ self . find_lifetime ( lifetime)
151
150
}
152
151
153
- fn find_lifetime ( & self , lifetime : LifetimeParamId ) -> Option < ( usize , & LifetimeParamData ) > {
152
+ fn find_lifetime ( & self , lifetime : LifetimeParamId ) -> Option < usize > {
154
153
if lifetime. parent == self . def {
155
154
let idx = lifetime. local_id . into_raw ( ) . into_u32 ( ) as usize ;
156
- if idx >= self . params . lifetimes . len ( ) {
157
- return None ;
158
- }
159
- Some ( (
160
- self . params . type_or_consts . len ( ) + idx,
161
- & self . params . lifetimes [ lifetime. local_id ] ,
162
- ) )
155
+ debug_assert ! ( idx <= self . params. lifetimes. len( ) ) ;
156
+ Some ( self . params . type_or_consts . len ( ) + idx)
163
157
} else {
158
+ debug_assert_eq ! ( self . parent_generics( ) . map( |it| it. def) , Some ( lifetime. parent) ) ;
164
159
self . parent_generics ( )
165
160
. and_then ( |g| g. find_lifetime ( lifetime) )
166
- . map ( |( idx, data ) | ( self . len_self ( ) + idx, data ) )
161
+ . map ( |idx| self . len_self ( ) + idx)
167
162
}
168
163
}
169
164
0 commit comments