about summary refs log tree commit diff
path: root/src/test/rustdoc/inline_local
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-102/+1
2018-12-04Add a test case for inlining the docs of a macro reexportGeorg Semmler-0/+28
2018-09-20add more tests for traits-in-non-module-scopeQuietMisdreavus-1/+1
2018-09-20don't check visibility when inlining local implsQuietMisdreavus-0/+28
those get handled properly in strip-hidden anyway
2017-09-30let htmldocck.py check for directoriesQuietMisdreavus-0/+3
2016-11-14rustdoc: Fix some local inlining issuesOliver Middleton-0/+173
* Only inline public items when inlining glob imports. * Never inline while in a private module or a child of a private module. * Never inline impls. This allowed the removal of a workaround in the rendering code.
2016-06-11rustdoc: Don't inline #[doc(hidden)] pub useOliver Middleton-0/+20
Currently if a `#[doc(hidden)] pub use` item is inlined the `hidden` attribute is ignored so the item can appear in the docs. By never inlining such imports, they can be stripped.
2016-03-22Consider `doc(no_inline)` in crate-local inliningmitaa-0/+33
2016-03-10Consider `doc(hidden)` for crate-local inliningmitaa-0/+27
2016-03-09Check for `doc(inline)` instead of `.*(inline)`mitaa-0/+29