diff options
author | Florian Diebold <[email protected]> | 2019-01-05 15:32:07 +0000 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2019-01-05 21:41:12 +0000 |
commit | 136aba1cf32646278c4034541ee415f656f8bb5e (patch) | |
tree | c15e7be7bfdae8074aa42f0c216e315bf8d7db49 /crates/ra_analysis/src | |
parent | a6f33b4ca5e70a056c60b24cb8cb3283d8209624 (diff) |
Add HIR Expr machinery
Diffstat (limited to 'crates/ra_analysis/src')
-rw-r--r-- | crates/ra_analysis/src/db.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_analysis/src/db.rs b/crates/ra_analysis/src/db.rs index 5422a400b..074a7a7f6 100644 --- a/crates/ra_analysis/src/db.rs +++ b/crates/ra_analysis/src/db.rs | |||
@@ -106,6 +106,8 @@ salsa::database_storage! { | |||
106 | fn struct_data() for hir::db::StructDataQuery; | 106 | fn struct_data() for hir::db::StructDataQuery; |
107 | fn enum_data() for hir::db::EnumDataQuery; | 107 | fn enum_data() for hir::db::EnumDataQuery; |
108 | fn impls_in_module() for hir::db::ImplsInModuleQuery; | 108 | fn impls_in_module() for hir::db::ImplsInModuleQuery; |
109 | fn body_hir() for hir::db::BodyHirQuery; | ||
110 | fn body_syntax_mapping() for hir::db::BodySyntaxMappingQuery; | ||
109 | } | 111 | } |
110 | } | 112 | } |
111 | } | 113 | } |