@@ -48,7 +48,7 @@ pub fn find_path(
48
48
)
49
49
}
50
50
51
- #[ derive( Copy , Clone , Debug ) ]
51
+ #[ derive( Copy , Clone , Debug , PartialEq , Eq ) ]
52
52
enum Stability {
53
53
Unstable ,
54
54
Stable ,
@@ -322,12 +322,14 @@ fn calculate_best_path(
322
322
None => * best_path = Some ( new_path) ,
323
323
} ;
324
324
325
- if item. krate ( ctx. db ) == Some ( ctx. from . krate ) {
326
- let mut best_path_len = max_len;
325
+ let db = ctx. db ;
326
+
327
+ let mut best_path_len = max_len;
328
+ if item. krate ( db) == Some ( ctx. from . krate ) {
327
329
// Item was defined in the same crate that wants to import it. It cannot be found in any
328
330
// dependency in this case.
329
331
// FIXME: cache the `find_local_import_locations` output?
330
- for ( module_id, name) in find_local_import_locations ( ctx . db , item, ctx. from ) {
332
+ for ( module_id, name) in find_local_import_locations ( db, item, ctx. from ) {
331
333
if !visited_modules. insert ( module_id) {
332
334
continue ;
333
335
}
@@ -342,7 +344,9 @@ fn calculate_best_path(
342
344
Some ( best_path) => select_best_path ( best_path, path, ctx. cfg ) ,
343
345
None => path,
344
346
} ;
345
- best_path_len = new_path. 0 . len ( ) ;
347
+ if new_path. 1 == Stable {
348
+ best_path_len = new_path. 0 . len ( ) ;
349
+ }
346
350
update_best_path ( & mut best_path, new_path) ;
347
351
}
348
352
}
@@ -351,8 +355,8 @@ fn calculate_best_path(
351
355
// too (unless we can't name it at all). It could *also* be (re)exported by the same crate
352
356
// that wants to import it here, but we always prefer to use the external path here.
353
357
354
- for dep in & ctx . db . crate_graph ( ) [ ctx. from . krate ] . dependencies {
355
- let import_map = ctx . db . import_map ( dep. crate_id ) ;
358
+ for dep in & db. crate_graph ( ) [ ctx. from . krate ] . dependencies {
359
+ let import_map = db. import_map ( dep. crate_id ) ;
356
360
let Some ( import_info_for) = import_map. import_info_for ( item) else { continue } ;
357
361
for info in import_info_for {
358
362
if info. is_doc_hidden {
@@ -367,8 +371,7 @@ fn calculate_best_path(
367
371
def_map,
368
372
visited_modules,
369
373
info. container ,
370
- max_len - 1 ,
371
- // fixme shouldnt we consider the best path length here?
374
+ best_path_len - 1 ,
372
375
) ;
373
376
let Some ( ( mut path, path_stability) ) = path else {
374
377
continue ;
@@ -381,19 +384,22 @@ fn calculate_best_path(
381
384
zip_stability ( path_stability, if info. is_unstable { Unstable } else { Stable } ) ,
382
385
) ;
383
386
384
- let new_path_with_stab = match best_path. take ( ) {
387
+ let new_path = match best_path. take ( ) {
385
388
Some ( best_path) => select_best_path ( best_path, path_with_stab, ctx. cfg ) ,
386
389
None => path_with_stab,
387
390
} ;
388
- update_best_path ( & mut best_path, new_path_with_stab) ;
391
+ if new_path. 1 == Stable {
392
+ best_path_len = new_path. 0 . len ( ) ;
393
+ }
394
+ update_best_path ( & mut best_path, new_path) ;
389
395
}
390
396
}
391
397
}
392
398
best_path
393
399
}
394
400
395
401
/// Select the best (most relevant) path between two paths.
396
- /// This accounts for stability, path length whether std should be chosen over alloc/core paths as
402
+ /// This accounts for stability, path length whether, std should be chosen over alloc/core paths as
397
403
/// well as ignoring prelude like paths or not.
398
404
fn select_best_path (
399
405
old_path @ ( _, old_stability) : ( ModPath , Stability ) ,
0 commit comments