Populate import maps eagerly
This commit is contained in:
parent
c4c1fcb8e9
commit
a6cdde0d0b
@ -33,14 +33,15 @@ pub(crate) fn prime_caches(db: &RootDatabase, cb: &(dyn Fn(PrimeCachesProgress)
|
|||||||
// FIXME: This would be easy to parallelize, since it's in the ideal ordering for that.
|
// FIXME: This would be easy to parallelize, since it's in the ideal ordering for that.
|
||||||
// Unfortunately rayon prevents panics from propagation out of a `scope`, which breaks
|
// Unfortunately rayon prevents panics from propagation out of a `scope`, which breaks
|
||||||
// cancellation, so we cannot use rayon.
|
// cancellation, so we cannot use rayon.
|
||||||
for (i, krate) in topo.iter().enumerate() {
|
for (i, &crate_id) in topo.iter().enumerate() {
|
||||||
let crate_name = graph[*krate].display_name.as_deref().unwrap_or_default().to_string();
|
let crate_name = graph[crate_id].display_name.as_deref().unwrap_or_default().to_string();
|
||||||
|
|
||||||
cb(PrimeCachesProgress::StartedOnCrate {
|
cb(PrimeCachesProgress::StartedOnCrate {
|
||||||
on_crate: crate_name,
|
on_crate: crate_name,
|
||||||
n_done: i,
|
n_done: i,
|
||||||
n_total: topo.len(),
|
n_total: topo.len(),
|
||||||
});
|
});
|
||||||
db.crate_def_map(*krate);
|
db.crate_def_map(crate_id);
|
||||||
|
db.import_map(crate_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user