mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 22:01:37 +00:00
remove FnId
This commit is contained in:
parent
efb63a7666
commit
dddbac6877
7 changed files with 26 additions and 45 deletions
|
@ -91,7 +91,6 @@ salsa::database_storage! {
|
|||
fn file_item() for hir::db::FileItemQuery;
|
||||
fn input_module_items() for hir::db::InputModuleItemsQuery;
|
||||
fn item_map() for hir::db::ItemMapQuery;
|
||||
fn fn_syntax() for hir::db::FnSyntaxQuery;
|
||||
fn submodules() for hir::db::SubmodulesQuery;
|
||||
fn infer() for hir::db::InferQuery;
|
||||
fn type_for_def() for hir::db::TypeForDefQuery;
|
||||
|
|
|
@ -122,9 +122,6 @@ impl AnalysisHostImpl {
|
|||
self.db
|
||||
.query(ra_db::SourceFileQuery)
|
||||
.sweep(salsa::SweepStrategy::default().discard_values());
|
||||
self.db
|
||||
.query(hir::db::FnSyntaxQuery)
|
||||
.sweep(salsa::SweepStrategy::default().discard_values());
|
||||
self.db
|
||||
.query(hir::db::SourceFileItemsQuery)
|
||||
.sweep(salsa::SweepStrategy::default().discard_values());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue