Skip to content

Commit 08b0c69

Browse files
committed
---
yaml --- r: 152262 b: refs/heads/try2 c: 287af7f h: refs/heads/master v: v3
1 parent 180a065 commit 08b0c69

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: e1e8db7e4a69825720fb1ae4478b6d29b447d994
8+
refs/heads/try2: 287af7fa1a2230b25d2ffe98c5cc623ad34c6287
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/librustdoc/html/render.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ pub enum ExternalLocation {
108108

109109
/// Metadata about an implementor of a trait.
110110
pub struct Implementor {
111+
def_id: ast::DefId,
111112
generics: clean::Generics,
112113
trait_: clean::Type,
113114
for_: clean::Type,
@@ -531,6 +532,11 @@ fn write_shared(cx: &Context,
531532

532533
try!(write!(&mut f, r"implementors['{}'] = [", krate.name));
533534
for imp in imps.iter() {
535+
// If the trait and implementation are in the same crate, then
536+
// there's no need to emit information about it (there's inlining
537+
// going on). If they're in different crates then the crate defining
538+
// the trait will be interested in our implementation.
539+
if imp.def_id.krate == did.krate { continue }
534540
try!(write!(&mut f, r#""impl{} {} for {}","#,
535541
imp.generics, imp.trait_, imp.for_));
536542
}
@@ -759,6 +765,7 @@ impl DocFolder for Cache {
759765
Vec::new()
760766
});
761767
v.push(Implementor {
768+
def_id: item.def_id,
762769
generics: i.generics.clone(),
763770
trait_: i.trait_.get_ref().clone(),
764771
for_: i.for_.clone(),

0 commit comments

Comments
 (0)