mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
Rename ImplsInCrateQuery as well
This commit is contained in:
parent
443ddb73c3
commit
e6aeabf96f
3 changed files with 3 additions and 3 deletions
|
@ -105,7 +105,7 @@ salsa::database_storage! {
|
|||
fn type_for_field() for hir::db::TypeForFieldQuery;
|
||||
fn struct_data() for hir::db::StructDataQuery;
|
||||
fn enum_data() for hir::db::EnumDataQuery;
|
||||
fn impls_in_crate() for hir::db::ImplsInCrateQuery;
|
||||
fn impls_in_module() for hir::db::ImplsInModuleQuery;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -90,7 +90,7 @@ pub trait HirDatabase: SyntaxDatabase
|
|||
}
|
||||
|
||||
fn impls_in_module(source_root_id: SourceRootId, module_id: ModuleId) -> Cancelable<Arc<ModuleImplBlocks>> {
|
||||
type ImplsInCrateQuery;
|
||||
type ImplsInModuleQuery;
|
||||
use fn crate::impl_block::impls_in_module;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -207,7 +207,7 @@ salsa::database_storage! {
|
|||
fn type_for_field() for db::TypeForFieldQuery;
|
||||
fn struct_data() for db::StructDataQuery;
|
||||
fn enum_data() for db::EnumDataQuery;
|
||||
fn impls_in_crate() for db::ImplsInCrateQuery;
|
||||
fn impls_in_module() for db::ImplsInModuleQuery;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue