diff options
author | Florian Diebold <[email protected]> | 2019-01-07 12:44:54 +0000 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2019-01-12 14:01:19 +0000 |
commit | 082ef52bcb15d779c6aff78d9860d328bf7df9b2 (patch) | |
tree | a4a123ad491e15c8d17bdc815675d43bb33811b5 /crates/ra_ide_api | |
parent | e9e397e705ad0bec9775067b10109e35ebefc493 (diff) |
Implement basic inherent method resolution
Diffstat (limited to 'crates/ra_ide_api')
-rw-r--r-- | crates/ra_ide_api/src/db.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_ide_api/src/db.rs b/crates/ra_ide_api/src/db.rs index efdf261be..60f84675d 100644 --- a/crates/ra_ide_api/src/db.rs +++ b/crates/ra_ide_api/src/db.rs | |||
@@ -124,6 +124,7 @@ salsa::database_storage! { | |||
124 | fn enum_data() for hir::db::EnumDataQuery; | 124 | fn enum_data() for hir::db::EnumDataQuery; |
125 | fn enum_variant_data() for hir::db::EnumVariantDataQuery; | 125 | fn enum_variant_data() for hir::db::EnumVariantDataQuery; |
126 | fn impls_in_module() for hir::db::ImplsInModuleQuery; | 126 | fn impls_in_module() for hir::db::ImplsInModuleQuery; |
127 | fn impls_in_crate() for hir::db::ImplsInCrateQuery; | ||
127 | fn body_hir() for hir::db::BodyHirQuery; | 128 | fn body_hir() for hir::db::BodyHirQuery; |
128 | fn body_syntax_mapping() for hir::db::BodySyntaxMappingQuery; | 129 | fn body_syntax_mapping() for hir::db::BodySyntaxMappingQuery; |
129 | fn fn_signature() for hir::db::FnSignatureQuery; | 130 | fn fn_signature() for hir::db::FnSignatureQuery; |