Auto merge of #95337 - petrochenkov:doclink3, r=camelid
rustdoc: Fix resolution of `crate`-relative paths in doc links Resolve `crate::foo` paths transparently to rustdoc, so their resolution no longer affects diagnostics and modules used for determining traits in scope. The proper solution is to account for the current `module_id`/`parent_scope` in `fn resolve_crate_root`, but it's a slightly larger compiler changes. This PR moves the code closer to it, but keeps it rustdoc-specific. Fixes https://github.com/rust-lang/rust/issues/78696 Fixes https://github.com/rust-lang/rust/issues/94924
This commit is contained in:
commit
949b98cab8
6 changed files with 53 additions and 43 deletions
|
|
@ -9,7 +9,7 @@ use rustc_hir::def::{
|
|||
Namespace::{self, *},
|
||||
PerNS,
|
||||
};
|
||||
use rustc_hir::def_id::{CrateNum, DefId, CRATE_DEF_ID};
|
||||
use rustc_hir::def_id::{DefId, CRATE_DEF_ID};
|
||||
use rustc_hir::Mutability;
|
||||
use rustc_middle::ty::{DefIdTree, Ty, TyCtxt};
|
||||
use rustc_middle::{bug, span_bug, ty};
|
||||
|
|
@ -1043,16 +1043,11 @@ impl<'a, 'tcx> DocVisitor for LinkCollector<'a, 'tcx> {
|
|||
// so we know which module it came from.
|
||||
for (parent_module, doc) in item.attrs.collapsed_doc_value_by_module_level() {
|
||||
debug!("combined_docs={}", doc);
|
||||
|
||||
let (krate, parent_node) = if let Some(id) = parent_module {
|
||||
(id.krate, Some(id))
|
||||
} else {
|
||||
(item.def_id.krate(), parent_node)
|
||||
};
|
||||
// NOTE: if there are links that start in one crate and end in another, this will not resolve them.
|
||||
// This is a degenerate case and it's not supported by rustdoc.
|
||||
let parent_node = parent_module.or(parent_node);
|
||||
for md_link in markdown_links(&doc) {
|
||||
let link = self.resolve_link(&item, &doc, parent_node, krate, md_link);
|
||||
let link = self.resolve_link(&item, &doc, parent_node, md_link);
|
||||
if let Some(link) = link {
|
||||
self.cx.cache.intra_doc_links.entry(item.def_id).or_default().push(link);
|
||||
}
|
||||
|
|
@ -1187,7 +1182,6 @@ impl LinkCollector<'_, '_> {
|
|||
item: &Item,
|
||||
dox: &str,
|
||||
parent_node: Option<DefId>,
|
||||
krate: CrateNum,
|
||||
ori_link: MarkdownLink,
|
||||
) -> Option<ItemLink> {
|
||||
trace!("considering link '{}'", ori_link.link);
|
||||
|
|
@ -1199,7 +1193,7 @@ impl LinkCollector<'_, '_> {
|
|||
link_range: ori_link.range.clone(),
|
||||
};
|
||||
|
||||
let PreprocessingInfo { path_str, disambiguator, extra_fragment, link_text } =
|
||||
let PreprocessingInfo { ref path_str, disambiguator, extra_fragment, link_text } =
|
||||
match preprocess_link(&ori_link)? {
|
||||
Ok(x) => x,
|
||||
Err(err) => {
|
||||
|
|
@ -1221,7 +1215,6 @@ impl LinkCollector<'_, '_> {
|
|||
return None;
|
||||
}
|
||||
};
|
||||
let mut path_str = &*path_str;
|
||||
|
||||
let inner_docs = item.inner_docs(self.cx.tcx);
|
||||
|
||||
|
|
@ -1239,7 +1232,7 @@ impl LinkCollector<'_, '_> {
|
|||
let base_node =
|
||||
if item.is_mod() && inner_docs { self.mod_ids.last().copied() } else { parent_node };
|
||||
|
||||
let Some(mut module_id) = base_node else {
|
||||
let Some(module_id) = base_node else {
|
||||
// This is a bug.
|
||||
debug!("attempting to resolve item without parent module: {}", path_str);
|
||||
resolution_failure(
|
||||
|
|
@ -1252,26 +1245,6 @@ impl LinkCollector<'_, '_> {
|
|||
return None;
|
||||
};
|
||||
|
||||
let resolved_self;
|
||||
let is_lone_crate = path_str == "crate";
|
||||
if path_str.starts_with("crate::") || is_lone_crate {
|
||||
use rustc_span::def_id::CRATE_DEF_INDEX;
|
||||
|
||||
// HACK(jynelson): rustc_resolve thinks that `crate` is the crate currently being documented.
|
||||
// But rustdoc wants it to mean the crate this item was originally present in.
|
||||
// To work around this, remove it and resolve relative to the crate root instead.
|
||||
// HACK(jynelson)(2): If we just strip `crate::` then suddenly primitives become ambiguous
|
||||
// (consider `crate::char`). Instead, change it to `self::`. This works because 'self' is now the crate root.
|
||||
// FIXME(#78696): This doesn't always work.
|
||||
if is_lone_crate {
|
||||
path_str = "self";
|
||||
} else {
|
||||
resolved_self = format!("self::{}", &path_str["crate::".len()..]);
|
||||
path_str = &resolved_self;
|
||||
}
|
||||
module_id = DefId { krate, index: CRATE_DEF_INDEX };
|
||||
}
|
||||
|
||||
let (mut res, fragment) = self.resolve_with_disambiguator_cached(
|
||||
ResolutionInfo {
|
||||
item_id: item.def_id,
|
||||
|
|
|
|||
|
|
@ -32,11 +32,6 @@ crate fn early_resolve_intra_doc_links(
|
|||
all_trait_impls: Default::default(),
|
||||
};
|
||||
|
||||
// Because of the `crate::` prefix, any doc comment can reference
|
||||
// the crate root's set of in-scope traits. This line makes sure
|
||||
// it's available.
|
||||
loader.add_traits_in_scope(CRATE_DEF_ID.to_def_id());
|
||||
|
||||
// Overridden `visit_item` below doesn't apply to the crate root,
|
||||
// so we have to visit its attributes and reexports separately.
|
||||
loader.load_links_in_attrs(&krate.attrs);
|
||||
|
|
@ -105,9 +100,6 @@ impl IntraLinkCrateLoader<'_, '_> {
|
|||
/// having impls in them.
|
||||
fn add_foreign_traits_in_scope(&mut self) {
|
||||
for cnum in Vec::from_iter(self.resolver.cstore().crates_untracked()) {
|
||||
// FIXME: Due to #78696 rustdoc can query traits in scope for any crate root.
|
||||
self.add_traits_in_scope(cnum.as_def_id());
|
||||
|
||||
let all_traits = Vec::from_iter(self.resolver.cstore().traits_in_crate_untracked(cnum));
|
||||
let all_trait_impls =
|
||||
Vec::from_iter(self.resolver.cstore().trait_impls_in_crate_untracked(cnum));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue