Skip to content

Commit

Permalink
rustdoc: Add Associated Constants section
Browse files Browse the repository at this point in the history
Section only visible if there are assoc. consts. present.
  • Loading branch information
Ulrik Sverdrup committed May 9, 2015
1 parent ff4e061 commit c46f3ff
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/librustdoc/html/render.rs
Expand Up @@ -1862,6 +1862,17 @@ fn item_trait(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
try!(write!(w, "</div>"));
}

if !consts.is_empty() {
try!(write!(w, "
<h2 id='associated-const'>Associated Constants</h2>
<div class='methods'>
"));
for t in &consts {
try!(trait_item(w, *t));
}
try!(write!(w, "</div>"));
}

// Output the documentation for each function individually
if !required.is_empty() {
try!(write!(w, "
Expand Down
1 change: 1 addition & 0 deletions src/test/rustdoc/assoc-consts.rs
Expand Up @@ -13,6 +13,7 @@
pub trait Foo {
// @has assoc_consts/trait.Foo.html '//*[@class="rust trait"]' \
// 'const FOO: usize;'
// @has - '//*[@id="associatedconstant.FOO"]' 'const FOO'
const FOO: usize;
}

Expand Down

0 comments on commit c46f3ff

Please sign in to comment.