diff options
author | Kirill Bulatov <[email protected]> | 2020-08-28 19:28:30 +0100 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2020-09-09 23:42:20 +0100 |
commit | 4bed588001a1d6cd5c83a3eefc6ef77c439de40b (patch) | |
tree | 92552f2af9a6aefcd4fffc20d7cbd06d1bc74d3c /crates/ide_db/src | |
parent | 5c336e266fe09ae9ae6e634513d441cbcde63696 (diff) |
First steps for mod<|> completion
Diffstat (limited to 'crates/ide_db/src')
-rw-r--r-- | crates/ide_db/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/ide_db/src/lib.rs b/crates/ide_db/src/lib.rs index 70ada02f3..f3197cc39 100644 --- a/crates/ide_db/src/lib.rs +++ b/crates/ide_db/src/lib.rs | |||
@@ -74,6 +74,9 @@ impl FileLoader for RootDatabase { | |||
74 | fn relevant_crates(&self, file_id: FileId) -> Arc<FxHashSet<CrateId>> { | 74 | fn relevant_crates(&self, file_id: FileId) -> Arc<FxHashSet<CrateId>> { |
75 | FileLoaderDelegate(self).relevant_crates(file_id) | 75 | FileLoaderDelegate(self).relevant_crates(file_id) |
76 | } | 76 | } |
77 | fn list_some_random_files_todo(&self, anchor: FileId) -> Vec<(FileId, String)> { | ||
78 | FileLoaderDelegate(self).list_some_random_files_todo(anchor) | ||
79 | } | ||
77 | } | 80 | } |
78 | 81 | ||
79 | impl salsa::Database for RootDatabase { | 82 | impl salsa::Database for RootDatabase { |