diff options
author | Kirill Bulatov <[email protected]> | 2020-09-07 18:52:37 +0100 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2020-09-09 23:42:20 +0100 |
commit | f9c14ac7204c38633e70b3efd47a5b1f9056afd0 (patch) | |
tree | 60d375f39f4737630e9a8166975c71f3ec5f2f9f /crates/hir_def/src | |
parent | 6ba479cd058aa54a9f161085c7ff9ac1f12d8df3 (diff) |
Move most of the logic into the completion module
Diffstat (limited to 'crates/hir_def/src')
-rw-r--r-- | crates/hir_def/src/test_db.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/hir_def/src/test_db.rs b/crates/hir_def/src/test_db.rs index 5bcfaf464..42a762936 100644 --- a/crates/hir_def/src/test_db.rs +++ b/crates/hir_def/src/test_db.rs | |||
@@ -63,9 +63,6 @@ impl FileLoader for TestDB { | |||
63 | fn relevant_crates(&self, file_id: FileId) -> Arc<FxHashSet<CrateId>> { | 63 | fn relevant_crates(&self, file_id: FileId) -> Arc<FxHashSet<CrateId>> { |
64 | FileLoaderDelegate(self).relevant_crates(file_id) | 64 | FileLoaderDelegate(self).relevant_crates(file_id) |
65 | } | 65 | } |
66 | fn possible_sudmobule_names(&self, module_file: FileId) -> Vec<String> { | ||
67 | FileLoaderDelegate(self).possible_sudmobule_names(module_file) | ||
68 | } | ||
69 | } | 66 | } |
70 | 67 | ||
71 | impl TestDB { | 68 | impl TestDB { |