@@ -312,19 +312,27 @@ fn calculate_best_path(
312
312
if max_len <= 1 {
313
313
return None ;
314
314
}
315
+
315
316
let mut best_path = None ;
316
- let update_best_path =
317
- |best_path : & mut Option < _ > , new_path : ( ModPath , Stability ) | match best_path {
317
+ let mut best_path_len = max_len;
318
+ let mut process = |mut path : ( ModPath , Stability ) , name, best_path_len : & mut _ | {
319
+ path. 0 . push_segment ( name) ;
320
+ let new_path = match best_path. take ( ) {
321
+ Some ( best_path) => select_best_path ( best_path, path, ctx. cfg ) ,
322
+ None => path,
323
+ } ;
324
+ if new_path. 1 == Stable {
325
+ * best_path_len = new_path. 0 . len ( ) ;
326
+ }
327
+ match & mut best_path {
318
328
Some ( ( old_path, old_stability) ) => {
319
329
* old_path = new_path. 0 ;
320
330
* old_stability = zip_stability ( * old_stability, new_path. 1 ) ;
321
331
}
322
- None => * best_path = Some ( new_path) ,
323
- } ;
324
-
332
+ None => best_path = Some ( new_path) ,
333
+ }
334
+ } ;
325
335
let db = ctx. db ;
326
-
327
- let mut best_path_len = max_len;
328
336
if item. krate ( db) == Some ( ctx. from . krate ) {
329
337
// Item was defined in the same crate that wants to import it. It cannot be found in any
330
338
// dependency in this case.
@@ -335,19 +343,10 @@ fn calculate_best_path(
335
343
}
336
344
// we are looking for paths of length up to best_path_len, any longer will make it be
337
345
// less optimal. The -1 is due to us pushing name onto it afterwards.
338
- if let Some ( mut path) =
346
+ if let Some ( path) =
339
347
find_path_for_module ( ctx, def_map, visited_modules, module_id, best_path_len - 1 )
340
348
{
341
- path. 0 . push_segment ( name) ;
342
-
343
- let new_path = match best_path. take ( ) {
344
- Some ( best_path) => select_best_path ( best_path, path, ctx. cfg ) ,
345
- None => path,
346
- } ;
347
- if new_path. 1 == Stable {
348
- best_path_len = new_path. 0 . len ( ) ;
349
- }
350
- update_best_path ( & mut best_path, new_path) ;
349
+ process ( path, name, & mut best_path_len) ;
351
350
}
352
351
}
353
352
} else {
@@ -373,25 +372,16 @@ fn calculate_best_path(
373
372
info. container ,
374
373
best_path_len - 1 ,
375
374
) ;
376
- let Some ( ( mut path, path_stability) ) = path else {
375
+ let Some ( ( path, path_stability) ) = path else {
377
376
continue ;
378
377
} ;
379
378
cov_mark:: hit!( partially_imported) ;
380
- path. push_segment ( info. name . clone ( ) ) ;
381
-
382
- let path_with_stab = (
379
+ let path = (
383
380
path,
384
381
zip_stability ( path_stability, if info. is_unstable { Unstable } else { Stable } ) ,
385
382
) ;
386
383
387
- let new_path = match best_path. take ( ) {
388
- Some ( best_path) => select_best_path ( best_path, path_with_stab, ctx. cfg ) ,
389
- None => path_with_stab,
390
- } ;
391
- if new_path. 1 == Stable {
392
- best_path_len = new_path. 0 . len ( ) ;
393
- }
394
- update_best_path ( & mut best_path, new_path) ;
384
+ process ( path, info. name . clone ( ) , & mut best_path_len) ;
395
385
}
396
386
}
397
387
}
0 commit comments