Move salsa attach to end before call to run_ide_things

This commit is contained in:
itsjunetime 2025-10-04 12:30:15 -05:00
parent dcabe2bd39
commit 10763b03b3
No known key found for this signature in database

View file

@ -335,16 +335,16 @@ impl flags::AnalysisStats {
if !self.skip_const_eval {
self.run_const_eval(db, &bodies, verbosity);
}
if self.run_all_ide_things {
self.run_ide_things(host.analysis(), file_ids.clone(), db, &vfs, verbosity);
}
if self.run_term_search {
self.run_term_search(&workspace, db, &vfs, file_ids, verbosity);
}
});
if self.run_all_ide_things {
self.run_ide_things(host.analysis(), file_ids.clone(), db, &vfs, verbosity);
}
if self.run_term_search {
self.run_term_search(&workspace, db, &vfs, file_ids, verbosity);
}
let db = host.raw_database_mut();
db.trigger_lru_eviction();