aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/db.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-01-18 13:36:56 +0000
committerAleksey Kladov <[email protected]>2019-01-19 12:37:25 +0000
commitc0aeb5204c010a11db2015113a7858b517415de1 (patch)
tree0a41b5828fde247ce21af57c182235e935d3ffb8 /crates/ra_ide_api/src/db.rs
parentb93c6bc5575db4acc5aa5867b6f0cc0dd37858f4 (diff)
switched to lowerd module
Diffstat (limited to 'crates/ra_ide_api/src/db.rs')
-rw-r--r--crates/ra_ide_api/src/db.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/ra_ide_api/src/db.rs b/crates/ra_ide_api/src/db.rs
index 36778b955..a1d3333b2 100644
--- a/crates/ra_ide_api/src/db.rs
+++ b/crates/ra_ide_api/src/db.rs
@@ -114,6 +114,9 @@ salsa::database_storage! {
114 fn file_items() for hir::db::FileItemsQuery; 114 fn file_items() for hir::db::FileItemsQuery;
115 fn file_item() for hir::db::FileItemQuery; 115 fn file_item() for hir::db::FileItemQuery;
116 fn input_module_items() for hir::db::InputModuleItemsQuery; 116 fn input_module_items() for hir::db::InputModuleItemsQuery;
117 fn lower_module() for hir::db::LowerModuleQuery;
118 fn lower_module_module() for hir::db::LowerModuleModuleQuery;
119 fn lower_module_source_map() for hir::db::LowerModuleSourceMapQuery;
117 fn item_map() for hir::db::ItemMapQuery; 120 fn item_map() for hir::db::ItemMapQuery;
118 fn submodules() for hir::db::SubmodulesQuery; 121 fn submodules() for hir::db::SubmodulesQuery;
119 fn infer() for hir::db::InferQuery; 122 fn infer() for hir::db::InferQuery;