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/base_db | |
parent | 521a26b0d207fc6d9293e06ca2c9a669bb66ddc4 (diff) |
Align naming of deps and revdeps
Diffstat (limited to 'crates/base_db')
-rw-r--r-- | crates/base_db/src/input.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/crates/base_db/src/input.rs b/crates/base_db/src/input.rs index 04a338d99..56fb4ad71 100644 --- a/crates/base_db/src/input.rs +++ b/crates/base_db/src/input.rs | |||
@@ -276,10 +276,7 @@ impl CrateGraph { | |||
276 | 276 | ||
277 | /// Returns all transitive reverse dependencies of the given crate, | 277 | /// Returns all transitive reverse dependencies of the given crate, |
278 | /// including the crate itself. | 278 | /// including the crate itself. |
279 | pub fn transitive_reverse_dependencies( | 279 | pub fn transitive_rev_deps(&self, of: CrateId) -> impl Iterator<Item = CrateId> + '_ { |
280 | &self, | ||
281 | of: CrateId, | ||
282 | ) -> impl Iterator<Item = CrateId> + '_ { | ||
283 | let mut worklist = vec![of]; | 280 | let mut worklist = vec![of]; |
284 | let mut rev_deps = FxHashSet::default(); | 281 | let mut rev_deps = FxHashSet::default(); |
285 | rev_deps.insert(of); | 282 | rev_deps.insert(of); |