mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 05:45:12 +00:00
Make find_path_inner
a query
This eliminates any remaining performance problems in the "Implement default members" assist (at least that I've found).
This commit is contained in:
parent
4677cea719
commit
6cdfd1c3cf
2 changed files with 7 additions and 4 deletions
|
@ -20,7 +20,7 @@ use crate::{
|
|||
/// *from where* you're referring to the item, hence the `from` parameter.
|
||||
pub fn find_path(db: &dyn DefDatabase, item: ItemInNs, from: ModuleId) -> Option<ModPath> {
|
||||
let _p = profile("find_path");
|
||||
find_path_inner(db, item, from, MAX_PATH_LEN)
|
||||
db.find_path_inner(item, from, MAX_PATH_LEN)
|
||||
}
|
||||
|
||||
const MAX_PATH_LEN: usize = 15;
|
||||
|
@ -49,7 +49,7 @@ impl ModPath {
|
|||
}
|
||||
}
|
||||
|
||||
fn find_path_inner(
|
||||
pub(crate) fn find_path_inner_query(
|
||||
db: &dyn DefDatabase,
|
||||
item: ItemInNs,
|
||||
from: ModuleId,
|
||||
|
@ -140,8 +140,7 @@ fn find_path_inner(
|
|||
let mut best_path = None;
|
||||
let mut best_path_len = max_len;
|
||||
for (module_id, name) in importable_locations {
|
||||
let mut path = match find_path_inner(
|
||||
db,
|
||||
let mut path = match db.find_path_inner(
|
||||
ItemInNs::Types(ModuleDefId::ModuleId(module_id)),
|
||||
from,
|
||||
best_path_len - 1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue