summary refs log tree commit diff
path: root/src/test/rustdoc-json/impls
AgeCommit message (Collapse)AuthorLines
2022-09-11Rustdoc-Json: Add tests for trait impls.Nixon Enraght-Moony-0/+81
2022-09-10Rustdoc-Json Tests: Use `@is` and `@ismany` more often.Nixon Enraght-Moony-6/+4
2022-08-18Update rustdoc-json test filesGuillaume Gomez-15/+15
2022-08-15Rollup merge of #100325 - aDotInTheVoid:rdj-import-impl, r=GuillaumeGomezMatthias Krüger-0/+24
Rustdoc-Json: Don't remove impls for items imported from private modules After #99287, items in private modules may still be in the json output, if a public import accesses them. To reflect this, items that are imported need to be marked as retained in the `Stripper` pass, so their impls arn't removed by `ImplStripper`. [More context on zulip](https://rust-lang.zulipchat.com/#narrow/stream/266220-rustdoc/topic/Populating.20cache.2Eimpls), thanks to @ jyn514 for helping debug this. ``@rustbot`` modify labels: +A-rustdoc-json +T-rustdoc r? ``@GuillaumeGomez`` Fixes #100252 Fixes #100242
2022-08-15rustdoc: Mark imported items as retainedNixon Enraght-Moony-0/+24
Fixes a bug where impl of items that were imported from a private module would be striped Fixes #100252 Fixes #100242
2022-08-13make clean::Item::span return option instead of dummy spanMichael Goulet-0/+18
2022-01-22Add has tests for blanket_with_local trait methodsRune Tynan-0/+2
2022-01-21Update test to include `self` caseRune Tynan-0/+2
2022-01-13Fix typo in testRune Tynan-1/+1
2022-01-13Fix errors on blanket impls by ignoring the children of their generated ↵Rune Tynan-0/+14
implementations