@@ -50,7 +50,7 @@ impl ChildrenExt for Children {
5050 let trait_ref = tcx. impl_trait_ref ( impl_def_id) . unwrap ( ) ;
5151 if let Some ( st) = fast_reject:: simplify_type ( tcx, trait_ref. self_ty ( ) , false ) {
5252 debug ! ( "insert_blindly: impl_def_id={:?} st={:?}" , impl_def_id, st) ;
53- self . nonblanket_impls . entry ( st) . or_default ( ) . push ( impl_def_id)
53+ self . non_blanket_impls . entry ( st) . or_default ( ) . push ( impl_def_id)
5454 } else {
5555 debug ! ( "insert_blindly: impl_def_id={:?} st=None" , impl_def_id) ;
5656 self . blanket_impls . push ( impl_def_id)
@@ -65,7 +65,7 @@ impl ChildrenExt for Children {
6565 let vec: & mut Vec < DefId > ;
6666 if let Some ( st) = fast_reject:: simplify_type ( tcx, trait_ref. self_ty ( ) , false ) {
6767 debug ! ( "remove_existing: impl_def_id={:?} st={:?}" , impl_def_id, st) ;
68- vec = self . nonblanket_impls . get_mut ( & st) . unwrap ( ) ;
68+ vec = self . non_blanket_impls . get_mut ( & st) . unwrap ( ) ;
6969 } else {
7070 debug ! ( "remove_existing: impl_def_id={:?} st=None" , impl_def_id) ;
7171 vec = & mut self . blanket_impls ;
@@ -216,15 +216,15 @@ impl ChildrenExt for Children {
216216}
217217
218218fn iter_children ( children : & mut Children ) -> impl Iterator < Item = DefId > + ' _ {
219- let nonblanket = children. nonblanket_impls . iter_mut ( ) . flat_map ( |( _, v) | v. iter ( ) ) ;
219+ let nonblanket = children. non_blanket_impls . iter_mut ( ) . flat_map ( |( _, v) | v. iter ( ) ) ;
220220 children. blanket_impls . iter ( ) . chain ( nonblanket) . cloned ( )
221221}
222222
223223fn filtered_children (
224224 children : & mut Children ,
225225 st : SimplifiedType ,
226226) -> impl Iterator < Item = DefId > + ' _ {
227- let nonblanket = children. nonblanket_impls . entry ( st) . or_default ( ) . iter ( ) ;
227+ let nonblanket = children. non_blanket_impls . entry ( st) . or_default ( ) . iter ( ) ;
228228 children. blanket_impls . iter ( ) . chain ( nonblanket) . cloned ( )
229229}
230230
0 commit comments