diff options
author | Aleksey Kladov <[email protected]> | 2021-03-23 09:59:51 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-03-23 10:04:43 +0000 |
commit | ba48c0d8bd93a0cb5c141f9296843bf5028d960d (patch) | |
tree | 12f9ef744af86ab305b66d54968c6d4435d59141 /crates/hir/src | |
parent | 521a26b0d207fc6d9293e06ca2c9a669bb66ddc4 (diff) |
Align naming of deps and revdeps
Diffstat (limited to 'crates/hir/src')
-rw-r--r-- | crates/hir/src/lib.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs index aefebde06..68f4551c0 100644 --- a/crates/hir/src/lib.rs +++ b/crates/hir/src/lib.rs | |||
@@ -154,11 +154,7 @@ impl Crate { | |||
154 | } | 154 | } |
155 | 155 | ||
156 | pub fn transitive_reverse_dependencies(self, db: &dyn HirDatabase) -> Vec<Crate> { | 156 | pub fn transitive_reverse_dependencies(self, db: &dyn HirDatabase) -> Vec<Crate> { |
157 | db.crate_graph() | 157 | db.crate_graph().transitive_rev_deps(self.id).into_iter().map(|id| Crate { id }).collect() |
158 | .transitive_reverse_dependencies(self.id) | ||
159 | .into_iter() | ||
160 | .map(|id| Crate { id }) | ||
161 | .collect() | ||
162 | } | 158 | } |
163 | 159 | ||
164 | pub fn root_module(self, db: &dyn HirDatabase) -> Module { | 160 | pub fn root_module(self, db: &dyn HirDatabase) -> Module { |