Skip to content

Commit

Permalink
remove code for recursive Deref in sidebar
Browse files Browse the repository at this point in the history
fix #85037
  • Loading branch information
trinity-1686a committed Jun 15, 2021
1 parent aee50f4 commit 2d76d44
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 29 deletions.
31 changes: 2 additions & 29 deletions src/librustdoc/html/render/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1960,19 +1960,13 @@ fn sidebar_assoc_items(cx: &Context<'_>, out: &mut Buffer, it: &clean::Item) {
.filter(|i| i.inner_impl().trait_.is_some())
.find(|i| i.inner_impl().trait_.def_id_full(cache) == cx.cache.deref_trait_did)
{
sidebar_deref_methods(cx, out, impl_, v, FxHashSet::default());
sidebar_deref_methods(cx, out, impl_, v);
}
}
}
}

fn sidebar_deref_methods(
cx: &Context<'_>,
out: &mut Buffer,
impl_: &Impl,
v: &Vec<Impl>,
mut already_seen: FxHashSet<DefId>,
) {
fn sidebar_deref_methods(cx: &Context<'_>, out: &mut Buffer, impl_: &Impl, v: &Vec<Impl>) {
let c = cx.cache();

debug!("found Deref: {:?}", impl_);
Expand Down Expand Up @@ -2029,27 +2023,6 @@ fn sidebar_deref_methods(
out.push_str("</div>");
}
}

// Recurse into any further impls that might exist for `target`
if let Some(target_did) = target.def_id_full(c) {
if let Some(target_impls) = c.impls.get(&target_did) {
if let Some(target_deref_impl) = target_impls
.iter()
.filter(|i| i.inner_impl().trait_.is_some())
.find(|i| i.inner_impl().trait_.def_id_full(c) == c.deref_trait_did)
{
if already_seen.insert(target_did.clone()) {
sidebar_deref_methods(
cx,
out,
target_deref_impl,
target_impls,
already_seen,
);
}
}
}
}
}
}

Expand Down
22 changes: 22 additions & 0 deletions src/test/rustdoc/issue-85037.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
use std::ops::Deref;

pub struct A {}
impl A { pub fn foo_a(&self) {} }

pub struct B {}
impl B { pub fn foo_b(&self) {} }

pub struct C {}
impl C { pub fn foo_c(&self) {} }

// @has issue_85037/struct.A.html '//div[@class="sidebar-links"]' 'foo_b'
impl Deref for A {
type Target = B;
fn deref(&self) -> &B { todo!() }
}

// @!has issue_85037/struct.A.html '//div[@class="sidebar-links"]' 'foo_c'
impl Deref for B {
type Target = C;
fn deref(&self) -> &C { todo!() }
}

0 comments on commit 2d76d44

Please sign in to comment.