@@ -43,7 +43,7 @@ crate struct Cache {
43
43
/// found on that implementation.
44
44
pub impls : FxHashMap < DefId , Vec < Impl > > ,
45
45
46
- /// Maintains a mapping of local crate `NodeId `s to the fully qualified name
46
+ /// Maintains a mapping of local crate `DefId `s to the fully qualified name
47
47
/// and "short type description" of that node. This is used when generating
48
48
/// URLs when a type is being linked to. External paths are not located in
49
49
/// this map because the `External` type itself has all the information
@@ -358,6 +358,7 @@ impl DocFolder for Cache {
358
358
| clean:: ForeignTypeItem
359
359
| clean:: MacroItem ( ..)
360
360
| clean:: ProcMacroItem ( ..)
361
+ | clean:: VariantItem ( ..)
361
362
if !self . stripped_mod =>
362
363
{
363
364
// Re-exported items mean that the same id can show up twice
@@ -373,13 +374,6 @@ impl DocFolder for Cache {
373
374
}
374
375
self . add_aliases ( & item) ;
375
376
}
376
- // Link variants to their parent enum because pages aren't emitted
377
- // for each variant.
378
- clean:: VariantItem ( ..) if !self . stripped_mod => {
379
- let mut stack = self . stack . clone ( ) ;
380
- stack. pop ( ) ;
381
- self . paths . insert ( item. def_id , ( stack, ItemType :: Enum ) ) ;
382
- }
383
377
384
378
clean:: PrimitiveItem ( ..) => {
385
379
self . add_aliases ( & item) ;
@@ -396,7 +390,8 @@ impl DocFolder for Cache {
396
390
| clean:: EnumItem ( ..)
397
391
| clean:: ForeignTypeItem
398
392
| clean:: StructItem ( ..)
399
- | clean:: UnionItem ( ..) => {
393
+ | clean:: UnionItem ( ..)
394
+ | clean:: VariantItem ( ..) => {
400
395
self . parent_stack . push ( item. def_id ) ;
401
396
self . parent_is_trait_impl = false ;
402
397
true
@@ -564,7 +559,7 @@ fn extern_location(
564
559
565
560
/// Builds the search index from the collected metadata
566
561
fn build_index ( krate : & clean:: Crate , cache : & mut Cache ) -> String {
567
- let mut nodeid_to_pathid = FxHashMap :: default ( ) ;
562
+ let mut defid_to_pathid = FxHashMap :: default ( ) ;
568
563
let mut crate_items = Vec :: with_capacity ( cache. search_index . len ( ) ) ;
569
564
let mut crate_paths = vec ! [ ] ;
570
565
@@ -586,21 +581,21 @@ fn build_index(krate: &clean::Crate, cache: &mut Cache) -> String {
586
581
}
587
582
}
588
583
589
- // Reduce `NodeId ` in paths into smaller sequential numbers,
584
+ // Reduce `DefId ` in paths into smaller sequential numbers,
590
585
// and prune the paths that do not appear in the index.
591
586
let mut lastpath = String :: new ( ) ;
592
587
let mut lastpathid = 0usize ;
593
588
594
589
for item in search_index {
595
- item. parent_idx = item. parent . map ( |nodeid | {
596
- if nodeid_to_pathid . contains_key ( & nodeid ) {
597
- * nodeid_to_pathid . get ( & nodeid ) . expect ( "no pathid" )
590
+ item. parent_idx = item. parent . map ( |defid | {
591
+ if defid_to_pathid . contains_key ( & defid ) {
592
+ * defid_to_pathid . get ( & defid ) . expect ( "no pathid" )
598
593
} else {
599
594
let pathid = lastpathid;
600
- nodeid_to_pathid . insert ( nodeid , pathid) ;
595
+ defid_to_pathid . insert ( defid , pathid) ;
601
596
lastpathid += 1 ;
602
597
603
- let & ( ref fqp, short) = paths. get ( & nodeid ) . unwrap ( ) ;
598
+ let & ( ref fqp, short) = paths. get ( & defid ) . unwrap ( ) ;
604
599
crate_paths. push ( ( short, fqp. last ( ) . unwrap ( ) . clone ( ) ) ) ;
605
600
pathid
606
601
}
0 commit comments