@@ -1849,49 +1849,26 @@ impl DefIdVisitor<'tcx> for SearchInterfaceForPrivateItemsVisitor<'tcx> {
1849
1849
}
1850
1850
}
1851
1851
1852
- struct PrivateItemsInPublicInterfacesVisitor < ' a , ' tcx > {
1852
+ struct PrivateItemsInPublicInterfacesVisitor < ' tcx > {
1853
1853
tcx : TyCtxt < ' tcx > ,
1854
1854
has_pub_restricted : bool ,
1855
- old_error_set : & ' a HirIdSet ,
1855
+ old_error_set_ancestry : HirIdSet ,
1856
1856
}
1857
1857
1858
- impl < ' a , ' tcx > PrivateItemsInPublicInterfacesVisitor < ' a , ' tcx > {
1858
+ impl < ' tcx > PrivateItemsInPublicInterfacesVisitor < ' tcx > {
1859
1859
fn check (
1860
1860
& self ,
1861
1861
item_id : hir:: HirId ,
1862
1862
required_visibility : ty:: Visibility ,
1863
1863
) -> SearchInterfaceForPrivateItemsVisitor < ' tcx > {
1864
- let mut has_old_errors = false ;
1865
-
1866
- // Slow path taken only if there any errors in the crate.
1867
- for & id in self . old_error_set {
1868
- // Walk up the nodes until we find `item_id` (or we hit a root).
1869
- let mut id = id;
1870
- loop {
1871
- if id == item_id {
1872
- has_old_errors = true ;
1873
- break ;
1874
- }
1875
- let parent = self . tcx . hir ( ) . get_parent_node ( id) ;
1876
- if parent == id {
1877
- break ;
1878
- }
1879
- id = parent;
1880
- }
1881
-
1882
- if has_old_errors {
1883
- break ;
1884
- }
1885
- }
1886
-
1887
1864
SearchInterfaceForPrivateItemsVisitor {
1888
1865
tcx : self . tcx ,
1889
1866
item_id,
1890
1867
item_def_id : self . tcx . hir ( ) . local_def_id ( item_id) . to_def_id ( ) ,
1891
1868
span : self . tcx . hir ( ) . span ( item_id) ,
1892
1869
required_visibility,
1893
1870
has_pub_restricted : self . has_pub_restricted ,
1894
- has_old_errors,
1871
+ has_old_errors : self . old_error_set_ancestry . contains ( & item_id ) ,
1895
1872
in_assoc_ty : false ,
1896
1873
}
1897
1874
}
@@ -1917,7 +1894,7 @@ impl<'a, 'tcx> PrivateItemsInPublicInterfacesVisitor<'a, 'tcx> {
1917
1894
}
1918
1895
}
1919
1896
1920
- impl < ' a , ' tcx > Visitor < ' tcx > for PrivateItemsInPublicInterfacesVisitor < ' a , ' tcx > {
1897
+ impl < ' tcx > Visitor < ' tcx > for PrivateItemsInPublicInterfacesVisitor < ' tcx > {
1921
1898
type Map = Map < ' tcx > ;
1922
1899
1923
1900
fn nested_visit_map ( & mut self ) -> NestedVisitorMap < Self :: Map > {
@@ -2137,11 +2114,22 @@ fn check_private_in_public(tcx: TyCtxt<'_>, krate: CrateNum) {
2137
2114
pub_restricted_visitor. has_pub_restricted
2138
2115
} ;
2139
2116
2117
+ let mut old_error_set_ancestry = HirIdSet :: default ( ) ;
2118
+ for mut id in visitor. old_error_set . iter ( ) . copied ( ) {
2119
+ loop {
2120
+ if !old_error_set_ancestry. insert ( id) {
2121
+ break ;
2122
+ }
2123
+ let parent = tcx. hir ( ) . get_parent_node ( id) ;
2124
+ if parent == id {
2125
+ break ;
2126
+ }
2127
+ id = parent;
2128
+ }
2129
+ }
2130
+
2140
2131
// Check for private types and traits in public interfaces.
2141
- let mut visitor = PrivateItemsInPublicInterfacesVisitor {
2142
- tcx,
2143
- has_pub_restricted,
2144
- old_error_set : & visitor. old_error_set ,
2145
- } ;
2132
+ let mut visitor =
2133
+ PrivateItemsInPublicInterfacesVisitor { tcx, has_pub_restricted, old_error_set_ancestry } ;
2146
2134
krate. visit_all_item_likes ( & mut DeepVisitor :: new ( & mut visitor) ) ;
2147
2135
}
0 commit comments