about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-66159.rs
AgeCommit message (Collapse)AuthorLines
2021-08-22Revert "Revert "Don't load all extern crates unconditionally""Joshua Nelson-10/+0
This reverts commit 5f0c54db4e595a6a77048f2b0605138ffa49a326.
2021-07-01Revert "Don't load all extern crates unconditionally"Guillaume Gomez-0/+10
2021-04-02Don't load all extern crates unconditionallyJoshua Nelson-10/+0
Instead, only load the crates that are linked to with intra-doc links. This doesn't help very much with any of rustdoc's fundamental issues with freezing the resolver, but it at least fixes a stable-to-stable regression, and makes the crate loading model somewhat more consistent with rustc's.
2019-12-09compiletest: add aux-crate directiveEric Huss-2/+1
2019-11-26Fix spelling typosBrian Wignall-1/+1
2019-11-23rustdoc: Mark `--extern-private` as unstableOliver Middleton-0/+1
It's not even stable in rustc so it shouldn't be stable in rustdoc.
2019-11-08rustdoc: Deliberately load extern crates before processing docsDaniel Silverstone-0/+10
In order that we can successfully later resolve paths in crates which weren't loaded as a result of merely parsing the crate we're documenting, we force the resolution of the path to each crate before cloning the resolver to use later. Closes #66159 Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>