about summary refs log tree commit diff
path: root/src/test/rustdoc/inline_cross/assoc-items.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-42/+0
2022-08-13Update `@!has` name in testsNoah Lev-2/+2
2021-05-30Remove toggle for "undocumented items."Jacob Hoffman-Andrews-6/+3
Per discussion in #84326. For trait implementations, this was misleading: the items actually do have documentation (but it comes from the trait definition). For both trait implementations and trait implementors, this was redundant: in both of those cases, the items are default-hidden by different toggle at the level above. Update tests: Remove XPath selectors that over-specified on details tag, in cases that weren't testing toggles. Add an explicit test for toggles on methods. Rename item-hide-threshold to toggle-item-contents for consistency.
2021-05-02Update testsGuillaume Gomez-3/+6
2019-07-16Update testsGuillaume Gomez-3/+3
2018-12-25Remove licensesMark Rousskov-10/+0
2018-08-25Update testsGuillaume Gomez-5/+0
2017-11-29rustdoc: Fix issues with cross-crate inlined associated itemsOliver Middleton-0/+57
* Visibility was missing from impl items. * Attributes and docs were missing from consts and types in impls. * Const default values were missing from traits. This unifies the code that handles associated items from impls and traits.