@@ -230,7 +230,7 @@ pub struct Cache {
230
230
231
231
/// Similar to `paths`, but only holds external paths. This is only used for
232
232
/// generating explicit hyperlinks to other crates.
233
- pub external_paths : HashMap < DefId , Vec < String > > ,
233
+ pub external_paths : HashMap < DefId , ( Vec < String > , ItemType ) > ,
234
234
235
235
/// This map contains information about all known traits of this crate.
236
236
/// Implementations of a crate should inherit the documentation of the
@@ -249,9 +249,6 @@ pub struct Cache {
249
249
/// Cache of where documentation for primitives can be found.
250
250
pub primitive_locations : HashMap < clean:: PrimitiveType , ast:: CrateNum > ,
251
251
252
- /// Set of definitions which have been inlined from external crates.
253
- pub inlined : HashSet < DefId > ,
254
-
255
252
// Note that external items for which `doc(hidden)` applies to are shown as
256
253
// non-reachable while local items aren't. This is because we're reusing
257
254
// the access levels from crateanalysis.
@@ -505,20 +502,20 @@ pub fn run(mut krate: clean::Crate,
505
502
506
503
// Crawl the crate to build various caches used for the output
507
504
let RenderInfo {
508
- inlined,
505
+ inlined : _ ,
509
506
external_paths,
510
507
external_typarams,
511
508
deref_trait_did,
512
509
} = renderinfo;
513
510
514
- let paths = external_paths. into_iter ( )
515
- . map ( |( k, ( v, t) ) | ( k, ( v, ItemType :: from_type_kind ( t) ) ) )
516
- . collect :: < HashMap < _ , _ > > ( ) ;
511
+ let external_paths = external_paths. into_iter ( )
512
+ . map ( |( k, ( v, t) ) | ( k, ( v, ItemType :: from_type_kind ( t) ) ) )
513
+ . collect ( ) ;
517
514
518
515
let mut cache = Cache {
519
516
impls : HashMap :: new ( ) ,
520
- external_paths : paths . iter ( ) . map ( | ( & k , v ) | ( k , v . 0 . clone ( ) ) ) . collect ( ) ,
521
- paths : paths ,
517
+ external_paths : external_paths ,
518
+ paths : HashMap :: new ( ) ,
522
519
implementors : HashMap :: new ( ) ,
523
520
stack : Vec :: new ( ) ,
524
521
parent_stack : Vec :: new ( ) ,
@@ -534,15 +531,14 @@ pub fn run(mut krate: clean::Crate,
534
531
traits : mem:: replace ( & mut krate. external_traits , HashMap :: new ( ) ) ,
535
532
deref_trait_did : deref_trait_did,
536
533
typarams : external_typarams,
537
- inlined : inlined,
538
534
} ;
539
535
540
536
// Cache where all our extern crates are located
541
537
for & ( n, ref e) in & krate. externs {
542
538
cache. extern_locations . insert ( n, ( e. name . clone ( ) ,
543
539
extern_location ( e, & cx. dst ) ) ) ;
544
540
let did = DefId { krate : n, index : CRATE_DEF_INDEX } ;
545
- cache. paths . insert ( did, ( vec ! [ e. name. to_string( ) ] , ItemType :: Module ) ) ;
541
+ cache. external_paths . insert ( did, ( vec ! [ e. name. to_string( ) ] , ItemType :: Module ) ) ;
546
542
}
547
543
548
544
// Cache where all known primitives have their documentation located.
@@ -753,7 +749,10 @@ fn write_shared(cx: &Context,
753
749
// theory it should be...
754
750
let & ( ref remote_path, remote_item_type) = match cache. paths . get ( & did) {
755
751
Some ( p) => p,
756
- None => continue ,
752
+ None => match cache. external_paths . get ( & did) {
753
+ Some ( p) => p,
754
+ None => continue ,
755
+ }
757
756
} ;
758
757
759
758
let mut mydst = dst. clone ( ) ;
@@ -1055,12 +1054,11 @@ impl DocFolder for Cache {
1055
1054
let last = self . parent_stack . last ( ) . unwrap ( ) ;
1056
1055
let did = * last;
1057
1056
let path = match self . paths . get ( & did) {
1058
- Some ( & ( _, ItemType :: Trait ) ) =>
1059
- Some ( & self . stack [ ..self . stack . len ( ) - 1 ] ) ,
1060
1057
// The current stack not necessarily has correlation
1061
1058
// for where the type was defined. On the other
1062
1059
// hand, `paths` always has the right
1063
1060
// information if present.
1061
+ Some ( & ( ref fqp, ItemType :: Trait ) ) |
1064
1062
Some ( & ( ref fqp, ItemType :: Struct ) ) |
1065
1063
Some ( & ( ref fqp, ItemType :: Enum ) ) =>
1066
1064
Some ( & fqp[ ..fqp. len ( ) - 1 ] ) ,
@@ -1092,12 +1090,10 @@ impl DocFolder for Cache {
1092
1090
} ) ;
1093
1091
}
1094
1092
}
1095
- ( Some ( parent) , None ) if is_method || ( !self . stripped_mod ) => {
1096
- if parent. is_local ( ) {
1097
- // We have a parent, but we don't know where they're
1098
- // defined yet. Wait for later to index this item.
1099
- self . orphan_methods . push ( ( parent, item. clone ( ) ) )
1100
- }
1093
+ ( Some ( parent) , None ) if is_method => {
1094
+ // We have a parent, but we don't know where they're
1095
+ // defined yet. Wait for later to index this item.
1096
+ self . orphan_methods . push ( ( parent, item. clone ( ) ) ) ;
1101
1097
}
1102
1098
_ => { }
1103
1099
}
@@ -1127,7 +1123,6 @@ impl DocFolder for Cache {
1127
1123
// not a public item.
1128
1124
if
1129
1125
!self . paths . contains_key ( & item. def_id ) ||
1130
- !item. def_id . is_local ( ) ||
1131
1126
self . access_levels . is_public ( item. def_id )
1132
1127
{
1133
1128
self . paths . insert ( item. def_id ,
@@ -1521,7 +1516,7 @@ impl<'a> Item<'a> {
1521
1516
} else {
1522
1517
let cache = cache ( ) ;
1523
1518
let external_path = match cache. external_paths . get ( & self . item . def_id ) {
1524
- Some ( path) => path,
1519
+ Some ( & ( ref path, _ ) ) => path,
1525
1520
None => return None ,
1526
1521
} ;
1527
1522
let mut path = match cache. extern_locations . get ( & self . item . def_id . krate ) {
@@ -2106,7 +2101,7 @@ fn item_trait(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
2106
2101
path = if it. def_id. is_local( ) {
2107
2102
cx. current. join( "/" )
2108
2103
} else {
2109
- let path = & cache. external_paths[ & it. def_id] ;
2104
+ let ( ref path, _ ) = cache. external_paths[ & it. def_id] ;
2110
2105
path[ ..path. len( ) - 1 ] . join( "/" )
2111
2106
} ,
2112
2107
ty = shortty( it) . to_static_str( ) ,
0 commit comments