mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 07:04:49 +00:00
move hir db
This commit is contained in:
parent
109a7f3717
commit
f14902f67b
3 changed files with 78 additions and 66 deletions
|
@ -122,15 +122,15 @@ salsa::database_storage! {
|
|||
fn file_symbols() for FileSymbolsQuery;
|
||||
fn resolve_syntax_ptr() for ResolveSyntaxPtrQuery;
|
||||
}
|
||||
impl hir::HirDatabase {
|
||||
fn module_tree() for hir::ModuleTreeQuery;
|
||||
fn fn_scopes() for hir::FnScopesQuery;
|
||||
fn _file_items() for hir::FileItemsQuery;
|
||||
fn _file_item() for hir::FileItemQuery;
|
||||
fn _input_module_items() for hir::InputModuleItemsQuery;
|
||||
fn _item_map() for hir::ItemMapQuery;
|
||||
fn _fn_syntax() for hir::FnSyntaxQuery;
|
||||
fn _submodules() for hir::SubmodulesQuery;
|
||||
impl hir::db::HirDatabase {
|
||||
fn module_tree() for hir::db::ModuleTreeQuery;
|
||||
fn fn_scopes() for hir::db::FnScopesQuery;
|
||||
fn _file_items() for hir::db::FileItemsQuery;
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue