Rollup merge of #113186 - jyn514:intra-doc-panic, r=petrochenkov
document that the panic in collect_intra_doc_links is load-bearing r? ``@petrochenkov``
This commit is contained in:
commit
e823969573
1 changed files with 4 additions and 0 deletions
|
@ -398,6 +398,10 @@ impl<'a, 'tcx> LinkCollector<'a, 'tcx> {
|
|||
.doc_link_resolutions(module_id)
|
||||
.get(&(Symbol::intern(path_str), ns))
|
||||
.copied()
|
||||
// NOTE: do not remove this panic! Missing links should be recorded as `Res::Err`; if
|
||||
// `doc_link_resolutions` is missing a `path_str`, that means that there are valid links
|
||||
// that are being missed. To fix the ICE, change
|
||||
// `rustc_resolve::rustdoc::attrs_to_preprocessed_links` to cache the link.
|
||||
.unwrap_or_else(|| panic!("no resolution for {:?} {:?} {:?}", path_str, ns, module_id))
|
||||
.and_then(|res| res.try_into().ok())
|
||||
.or_else(|| resolve_primitive(path_str, ns));
|
||||
|
|
Loading…
Add table
Reference in a new issue