]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/passes/collect_intra_doc_links.rs
Rollup merge of #76163 - lzutao:readme-glibc, r=cuviper
[rust.git] / src / librustdoc / passes / collect_intra_doc_links.rs
1 use rustc_ast as ast;
2 use rustc_data_structures::stable_set::FxHashSet;
3 use rustc_errors::{Applicability, DiagnosticBuilder};
4 use rustc_expand::base::SyntaxExtensionKind;
5 use rustc_feature::UnstableFeatures;
6 use rustc_hir as hir;
7 use rustc_hir::def::{
8     DefKind,
9     Namespace::{self, *},
10     PerNS, Res,
11 };
12 use rustc_hir::def_id::DefId;
13 use rustc_middle::ty;
14 use rustc_resolve::ParentScope;
15 use rustc_session::lint;
16 use rustc_span::hygiene::MacroKind;
17 use rustc_span::symbol::Ident;
18 use rustc_span::symbol::Symbol;
19 use rustc_span::DUMMY_SP;
20 use smallvec::SmallVec;
21
22 use std::cell::Cell;
23 use std::ops::Range;
24
25 use crate::clean::*;
26 use crate::core::DocContext;
27 use crate::fold::DocFolder;
28 use crate::html::markdown::markdown_links;
29 use crate::passes::Pass;
30
31 use super::span_of_attrs;
32
33 pub const COLLECT_INTRA_DOC_LINKS: Pass = Pass {
34     name: "collect-intra-doc-links",
35     run: collect_intra_doc_links,
36     description: "reads a crate's documentation to resolve intra-doc-links",
37 };
38
39 pub fn collect_intra_doc_links(krate: Crate, cx: &DocContext<'_>) -> Crate {
40     if !UnstableFeatures::from_environment().is_nightly_build() {
41         krate
42     } else {
43         let mut coll = LinkCollector::new(cx);
44
45         coll.fold_crate(krate)
46     }
47 }
48
49 enum ErrorKind {
50     ResolutionFailure,
51     AnchorFailure(AnchorFailure),
52 }
53
54 enum AnchorFailure {
55     MultipleAnchors,
56     Primitive,
57     Variant,
58     AssocConstant,
59     AssocType,
60     Field,
61     Method,
62 }
63
64 struct LinkCollector<'a, 'tcx> {
65     cx: &'a DocContext<'tcx>,
66     // NOTE: this may not necessarily be a module in the current crate
67     mod_ids: Vec<DefId>,
68     /// This is used to store the kind of associated items,
69     /// because `clean` and the disambiguator code expect them to be different.
70     /// See the code for associated items on inherent impls for details.
71     kind_side_channel: Cell<Option<DefKind>>,
72 }
73
74 impl<'a, 'tcx> LinkCollector<'a, 'tcx> {
75     fn new(cx: &'a DocContext<'tcx>) -> Self {
76         LinkCollector { cx, mod_ids: Vec::new(), kind_side_channel: Cell::new(None) }
77     }
78
79     fn variant_field(
80         &self,
81         path_str: &str,
82         current_item: &Option<String>,
83         module_id: DefId,
84     ) -> Result<(Res, Option<String>), ErrorKind> {
85         let cx = self.cx;
86
87         let mut split = path_str.rsplitn(3, "::");
88         let variant_field_name =
89             split.next().map(|f| Symbol::intern(f)).ok_or(ErrorKind::ResolutionFailure)?;
90         let variant_name =
91             split.next().map(|f| Symbol::intern(f)).ok_or(ErrorKind::ResolutionFailure)?;
92         let path = split
93             .next()
94             .map(|f| {
95                 if f == "self" || f == "Self" {
96                     if let Some(name) = current_item.as_ref() {
97                         return name.clone();
98                     }
99                 }
100                 f.to_owned()
101             })
102             .ok_or(ErrorKind::ResolutionFailure)?;
103         let (_, ty_res) = cx
104             .enter_resolver(|resolver| {
105                 resolver.resolve_str_path_error(DUMMY_SP, &path, TypeNS, module_id)
106             })
107             .map_err(|_| ErrorKind::ResolutionFailure)?;
108         if let Res::Err = ty_res {
109             return Err(ErrorKind::ResolutionFailure);
110         }
111         let ty_res = ty_res.map_id(|_| panic!("unexpected node_id"));
112         match ty_res {
113             Res::Def(DefKind::Enum, did) => {
114                 if cx
115                     .tcx
116                     .inherent_impls(did)
117                     .iter()
118                     .flat_map(|imp| cx.tcx.associated_items(*imp).in_definition_order())
119                     .any(|item| item.ident.name == variant_name)
120                 {
121                     return Err(ErrorKind::ResolutionFailure);
122                 }
123                 match cx.tcx.type_of(did).kind {
124                     ty::Adt(def, _) if def.is_enum() => {
125                         if def.all_fields().any(|item| item.ident.name == variant_field_name) {
126                             Ok((
127                                 ty_res,
128                                 Some(format!(
129                                     "variant.{}.field.{}",
130                                     variant_name, variant_field_name
131                                 )),
132                             ))
133                         } else {
134                             Err(ErrorKind::ResolutionFailure)
135                         }
136                     }
137                     _ => Err(ErrorKind::ResolutionFailure),
138                 }
139             }
140             _ => Err(ErrorKind::ResolutionFailure),
141         }
142     }
143
144     /// Resolves a string as a macro.
145     fn macro_resolve(&self, path_str: &str, parent_id: Option<DefId>) -> Option<Res> {
146         let cx = self.cx;
147         let path = ast::Path::from_ident(Ident::from_str(path_str));
148         cx.enter_resolver(|resolver| {
149             if let Ok((Some(ext), res)) = resolver.resolve_macro_path(
150                 &path,
151                 None,
152                 &ParentScope::module(resolver.graph_root()),
153                 false,
154                 false,
155             ) {
156                 if let SyntaxExtensionKind::LegacyBang { .. } = ext.kind {
157                     return Some(res.map_id(|_| panic!("unexpected id")));
158                 }
159             }
160             if let Some(res) = resolver.all_macros().get(&Symbol::intern(path_str)) {
161                 return Some(res.map_id(|_| panic!("unexpected id")));
162             }
163             if let Some(module_id) = parent_id {
164                 debug!("resolving {} as a macro in the module {:?}", path_str, module_id);
165                 if let Ok((_, res)) =
166                     resolver.resolve_str_path_error(DUMMY_SP, path_str, MacroNS, module_id)
167                 {
168                     // don't resolve builtins like `#[derive]`
169                     if let Res::Def(..) = res {
170                         let res = res.map_id(|_| panic!("unexpected node_id"));
171                         return Some(res);
172                     }
173                 }
174             } else {
175                 debug!("attempting to resolve item without parent module: {}", path_str);
176             }
177             None
178         })
179     }
180     /// Resolves a string as a path within a particular namespace. Also returns an optional
181     /// URL fragment in the case of variants and methods.
182     fn resolve(
183         &self,
184         path_str: &str,
185         ns: Namespace,
186         current_item: &Option<String>,
187         parent_id: Option<DefId>,
188         extra_fragment: &Option<String>,
189     ) -> Result<(Res, Option<String>), ErrorKind> {
190         let cx = self.cx;
191
192         // In case we're in a module, try to resolve the relative path.
193         if let Some(module_id) = parent_id {
194             let result = cx.enter_resolver(|resolver| {
195                 resolver.resolve_str_path_error(DUMMY_SP, &path_str, ns, module_id)
196             });
197             debug!("{} resolved to {:?} in namespace {:?}", path_str, result, ns);
198             let result = match result {
199                 Ok((_, Res::Err)) => Err(ErrorKind::ResolutionFailure),
200                 _ => result.map_err(|_| ErrorKind::ResolutionFailure),
201             };
202
203             if let Ok((_, res)) = result {
204                 let res = res.map_id(|_| panic!("unexpected node_id"));
205                 // In case this is a trait item, skip the
206                 // early return and try looking for the trait.
207                 let value = match res {
208                     Res::Def(DefKind::AssocFn | DefKind::AssocConst, _) => true,
209                     Res::Def(DefKind::AssocTy, _) => false,
210                     Res::Def(DefKind::Variant, _) => {
211                         return handle_variant(cx, res, extra_fragment);
212                     }
213                     // Not a trait item; just return what we found.
214                     Res::PrimTy(..) => {
215                         if extra_fragment.is_some() {
216                             return Err(ErrorKind::AnchorFailure(AnchorFailure::Primitive));
217                         }
218                         return Ok((res, Some(path_str.to_owned())));
219                     }
220                     Res::Def(DefKind::Mod, _) => {
221                         return Ok((res, extra_fragment.clone()));
222                     }
223                     _ => {
224                         return Ok((res, extra_fragment.clone()));
225                     }
226                 };
227
228                 if value != (ns == ValueNS) {
229                     return Err(ErrorKind::ResolutionFailure);
230                 }
231             } else if let Some((path, prim)) = is_primitive(path_str, ns) {
232                 if extra_fragment.is_some() {
233                     return Err(ErrorKind::AnchorFailure(AnchorFailure::Primitive));
234                 }
235                 return Ok((prim, Some(path.to_owned())));
236             }
237
238             // Try looking for methods and associated items.
239             let mut split = path_str.rsplitn(2, "::");
240             let item_name =
241                 split.next().map(|f| Symbol::intern(f)).ok_or(ErrorKind::ResolutionFailure)?;
242             let path = split
243                 .next()
244                 .map(|f| {
245                     if f == "self" || f == "Self" {
246                         if let Some(name) = current_item.as_ref() {
247                             return name.clone();
248                         }
249                     }
250                     f.to_owned()
251                 })
252                 .ok_or(ErrorKind::ResolutionFailure)?;
253
254             if let Some((path, prim)) = is_primitive(&path, TypeNS) {
255                 for &impl_ in primitive_impl(cx, &path).ok_or(ErrorKind::ResolutionFailure)? {
256                     let link = cx
257                         .tcx
258                         .associated_items(impl_)
259                         .find_by_name_and_namespace(
260                             cx.tcx,
261                             Ident::with_dummy_span(item_name),
262                             ns,
263                             impl_,
264                         )
265                         .map(|item| match item.kind {
266                             ty::AssocKind::Fn => "method",
267                             ty::AssocKind::Const => "associatedconstant",
268                             ty::AssocKind::Type => "associatedtype",
269                         })
270                         .map(|out| (prim, Some(format!("{}#{}.{}", path, out, item_name))));
271                     if let Some(link) = link {
272                         return Ok(link);
273                     }
274                 }
275                 return Err(ErrorKind::ResolutionFailure);
276             }
277
278             let (_, ty_res) = cx
279                 .enter_resolver(|resolver| {
280                     resolver.resolve_str_path_error(DUMMY_SP, &path, TypeNS, module_id)
281                 })
282                 .map_err(|_| ErrorKind::ResolutionFailure)?;
283             if let Res::Err = ty_res {
284                 return if ns == Namespace::ValueNS {
285                     self.variant_field(path_str, current_item, module_id)
286                 } else {
287                     Err(ErrorKind::ResolutionFailure)
288                 };
289             }
290             let ty_res = ty_res.map_id(|_| panic!("unexpected node_id"));
291             let res = match ty_res {
292                 Res::Def(
293                     DefKind::Struct | DefKind::Union | DefKind::Enum | DefKind::TyAlias,
294                     did,
295                 ) => {
296                     debug!("looking for associated item named {} for item {:?}", item_name, did);
297                     // Checks if item_name belongs to `impl SomeItem`
298                     let kind = cx
299                         .tcx
300                         .inherent_impls(did)
301                         .iter()
302                         .flat_map(|&imp| {
303                             cx.tcx.associated_items(imp).find_by_name_and_namespace(
304                                 cx.tcx,
305                                 Ident::with_dummy_span(item_name),
306                                 ns,
307                                 imp,
308                             )
309                         })
310                         .map(|item| item.kind)
311                         // There should only ever be one associated item that matches from any inherent impl
312                         .next()
313                         // Check if item_name belongs to `impl SomeTrait for SomeItem`
314                         // This gives precedence to `impl SomeItem`:
315                         // Although having both would be ambiguous, use impl version for compat. sake.
316                         // To handle that properly resolve() would have to support
317                         // something like [`ambi_fn`](<SomeStruct as SomeTrait>::ambi_fn)
318                         .or_else(|| {
319                             let kind = resolve_associated_trait_item(
320                                 did, module_id, item_name, ns, &self.cx,
321                             );
322                             debug!("got associated item kind {:?}", kind);
323                             kind
324                         });
325
326                     if let Some(kind) = kind {
327                         let out = match kind {
328                             ty::AssocKind::Fn => "method",
329                             ty::AssocKind::Const => "associatedconstant",
330                             ty::AssocKind::Type => "associatedtype",
331                         };
332                         Some(if extra_fragment.is_some() {
333                             Err(ErrorKind::AnchorFailure(if kind == ty::AssocKind::Fn {
334                                 AnchorFailure::Method
335                             } else {
336                                 AnchorFailure::AssocConstant
337                             }))
338                         } else {
339                             // HACK(jynelson): `clean` expects the type, not the associated item.
340                             // but the disambiguator logic expects the associated item.
341                             // Store the kind in a side channel so that only the disambiguator logic looks at it.
342                             self.kind_side_channel.set(Some(kind.as_def_kind()));
343                             Ok((ty_res, Some(format!("{}.{}", out, item_name))))
344                         })
345                     } else if ns == Namespace::ValueNS {
346                         match cx.tcx.type_of(did).kind {
347                             ty::Adt(def, _) => {
348                                 let field = if def.is_enum() {
349                                     def.all_fields().find(|item| item.ident.name == item_name)
350                                 } else {
351                                     def.non_enum_variant()
352                                         .fields
353                                         .iter()
354                                         .find(|item| item.ident.name == item_name)
355                                 };
356                                 field.map(|item| {
357                                     if extra_fragment.is_some() {
358                                         Err(ErrorKind::AnchorFailure(if def.is_enum() {
359                                             AnchorFailure::Variant
360                                         } else {
361                                             AnchorFailure::Field
362                                         }))
363                                     } else {
364                                         Ok((
365                                             ty_res,
366                                             Some(format!(
367                                                 "{}.{}",
368                                                 if def.is_enum() {
369                                                     "variant"
370                                                 } else {
371                                                     "structfield"
372                                                 },
373                                                 item.ident
374                                             )),
375                                         ))
376                                     }
377                                 })
378                             }
379                             _ => None,
380                         }
381                     } else {
382                         // We already know this isn't in ValueNS, so no need to check variant_field
383                         return Err(ErrorKind::ResolutionFailure);
384                     }
385                 }
386                 Res::Def(DefKind::Trait, did) => cx
387                     .tcx
388                     .associated_items(did)
389                     .find_by_name_and_namespace(cx.tcx, Ident::with_dummy_span(item_name), ns, did)
390                     .map(|item| {
391                         let kind = match item.kind {
392                             ty::AssocKind::Const => "associatedconstant",
393                             ty::AssocKind::Type => "associatedtype",
394                             ty::AssocKind::Fn => {
395                                 if item.defaultness.has_value() {
396                                     "method"
397                                 } else {
398                                     "tymethod"
399                                 }
400                             }
401                         };
402
403                         if extra_fragment.is_some() {
404                             Err(ErrorKind::AnchorFailure(if item.kind == ty::AssocKind::Const {
405                                 AnchorFailure::AssocConstant
406                             } else if item.kind == ty::AssocKind::Type {
407                                 AnchorFailure::AssocType
408                             } else {
409                                 AnchorFailure::Method
410                             }))
411                         } else {
412                             let res = Res::Def(item.kind.as_def_kind(), item.def_id);
413                             Ok((res, Some(format!("{}.{}", kind, item_name))))
414                         }
415                     }),
416                 _ => None,
417             };
418             res.unwrap_or_else(|| {
419                 if ns == Namespace::ValueNS {
420                     self.variant_field(path_str, current_item, module_id)
421                 } else {
422                     Err(ErrorKind::ResolutionFailure)
423                 }
424             })
425         } else {
426             debug!("attempting to resolve item without parent module: {}", path_str);
427             Err(ErrorKind::ResolutionFailure)
428         }
429     }
430 }
431
432 fn resolve_associated_trait_item(
433     did: DefId,
434     module: DefId,
435     item_name: Symbol,
436     ns: Namespace,
437     cx: &DocContext<'_>,
438 ) -> Option<ty::AssocKind> {
439     let ty = cx.tcx.type_of(did);
440     // First consider automatic impls: `impl From<T> for T`
441     let implicit_impls = crate::clean::get_auto_trait_and_blanket_impls(cx, ty, did);
442     let mut candidates: Vec<_> = implicit_impls
443         .flat_map(|impl_outer| {
444             match impl_outer.inner {
445                 ImplItem(impl_) => {
446                     debug!("considering auto or blanket impl for trait {:?}", impl_.trait_);
447                     // Give precedence to methods that were overridden
448                     if !impl_.provided_trait_methods.contains(&*item_name.as_str()) {
449                         let mut items = impl_.items.into_iter().filter_map(|assoc| {
450                             if assoc.name.as_deref() != Some(&*item_name.as_str()) {
451                                 return None;
452                             }
453                             let kind = assoc
454                                 .inner
455                                 .as_assoc_kind()
456                                 .expect("inner items for a trait should be associated items");
457                             if kind.namespace() != ns {
458                                 return None;
459                             }
460
461                             trace!("considering associated item {:?}", assoc.inner);
462                             // We have a slight issue: normal methods come from `clean` types,
463                             // but provided methods come directly from `tcx`.
464                             // Fortunately, we don't need the whole method, we just need to know
465                             // what kind of associated item it is.
466                             Some((assoc.def_id, kind))
467                         });
468                         let assoc = items.next();
469                         debug_assert_eq!(items.count(), 0);
470                         assoc
471                     } else {
472                         // These are provided methods or default types:
473                         // ```
474                         // trait T {
475                         //   type A = usize;
476                         //   fn has_default() -> A { 0 }
477                         // }
478                         // ```
479                         let trait_ = impl_.trait_.unwrap().def_id().unwrap();
480                         cx.tcx
481                             .associated_items(trait_)
482                             .find_by_name_and_namespace(
483                                 cx.tcx,
484                                 Ident::with_dummy_span(item_name),
485                                 ns,
486                                 trait_,
487                             )
488                             .map(|assoc| (assoc.def_id, assoc.kind))
489                     }
490                 }
491                 _ => panic!("get_impls returned something that wasn't an impl"),
492             }
493         })
494         .collect();
495
496     // Next consider explicit impls: `impl MyTrait for MyType`
497     // Give precedence to inherent impls.
498     if candidates.is_empty() {
499         let traits = traits_implemented_by(cx, did, module);
500         debug!("considering traits {:?}", traits);
501         candidates.extend(traits.iter().filter_map(|&trait_| {
502             cx.tcx
503                 .associated_items(trait_)
504                 .find_by_name_and_namespace(cx.tcx, Ident::with_dummy_span(item_name), ns, trait_)
505                 .map(|assoc| (assoc.def_id, assoc.kind))
506         }));
507     }
508     // FIXME: warn about ambiguity
509     debug!("the candidates were {:?}", candidates);
510     candidates.pop().map(|(_, kind)| kind)
511 }
512
513 /// Given a type, return all traits in scope in `module` implemented by that type.
514 ///
515 /// NOTE: this cannot be a query because more traits could be available when more crates are compiled!
516 /// So it is not stable to serialize cross-crate.
517 fn traits_implemented_by(cx: &DocContext<'_>, type_: DefId, module: DefId) -> FxHashSet<DefId> {
518     let mut cache = cx.module_trait_cache.borrow_mut();
519     let in_scope_traits = cache.entry(module).or_insert_with(|| {
520         cx.enter_resolver(|resolver| {
521             resolver.traits_in_scope(module).into_iter().map(|candidate| candidate.def_id).collect()
522         })
523     });
524
525     let ty = cx.tcx.type_of(type_);
526     let iter = in_scope_traits.iter().flat_map(|&trait_| {
527         trace!("considering explicit impl for trait {:?}", trait_);
528         let mut saw_impl = false;
529         // Look at each trait implementation to see if it's an impl for `did`
530         cx.tcx.for_each_relevant_impl(trait_, ty, |impl_| {
531             // FIXME: this is inefficient, find a way to short-circuit for_each_* so this doesn't take as long
532             if saw_impl {
533                 return;
534             }
535
536             let trait_ref = cx.tcx.impl_trait_ref(impl_).expect("this is not an inherent impl");
537             // Check if these are the same type.
538             let impl_type = trait_ref.self_ty();
539             debug!(
540                 "comparing type {} with kind {:?} against type {:?}",
541                 impl_type, impl_type.kind, type_
542             );
543             // Fast path: if this is a primitive simple `==` will work
544             saw_impl = impl_type == ty
545                 || match impl_type.kind {
546                     // Check if these are the same def_id
547                     ty::Adt(def, _) => {
548                         debug!("adt def_id: {:?}", def.did);
549                         def.did == type_
550                     }
551                     ty::Foreign(def_id) => def_id == type_,
552                     _ => false,
553                 };
554         });
555         if saw_impl { Some(trait_) } else { None }
556     });
557     iter.collect()
558 }
559
560 /// Check for resolve collisions between a trait and its derive
561 ///
562 /// These are common and we should just resolve to the trait in that case
563 fn is_derive_trait_collision<T>(ns: &PerNS<Option<(Res, T)>>) -> bool {
564     if let PerNS {
565         type_ns: Some((Res::Def(DefKind::Trait, _), _)),
566         macro_ns: Some((Res::Def(DefKind::Macro(MacroKind::Derive), _), _)),
567         ..
568     } = *ns
569     {
570         true
571     } else {
572         false
573     }
574 }
575
576 impl<'a, 'tcx> DocFolder for LinkCollector<'a, 'tcx> {
577     fn fold_item(&mut self, mut item: Item) -> Option<Item> {
578         use rustc_middle::ty::DefIdTree;
579
580         let parent_node = if item.is_fake() {
581             // FIXME: is this correct?
582             None
583         } else {
584             let mut current = item.def_id;
585             // The immediate parent might not always be a module.
586             // Find the first parent which is.
587             loop {
588                 if let Some(parent) = self.cx.tcx.parent(current) {
589                     if self.cx.tcx.def_kind(parent) == DefKind::Mod {
590                         break Some(parent);
591                     }
592                     current = parent;
593                 } else {
594                     break None;
595                 }
596             }
597         };
598
599         if parent_node.is_some() {
600             trace!("got parent node for {:?} {:?}, id {:?}", item.type_(), item.name, item.def_id);
601         }
602
603         let current_item = match item.inner {
604             ModuleItem(..) => {
605                 if item.attrs.inner_docs {
606                     if item.def_id.is_top_level_module() { item.name.clone() } else { None }
607                 } else {
608                     match parent_node.or(self.mod_ids.last().copied()) {
609                         Some(parent) if !parent.is_top_level_module() => {
610                             // FIXME: can we pull the parent module's name from elsewhere?
611                             Some(self.cx.tcx.item_name(parent).to_string())
612                         }
613                         _ => None,
614                     }
615                 }
616             }
617             ImplItem(Impl { ref for_, .. }) => {
618                 for_.def_id().map(|did| self.cx.tcx.item_name(did).to_string())
619             }
620             // we don't display docs on `extern crate` items anyway, so don't process them.
621             ExternCrateItem(..) => {
622                 debug!("ignoring extern crate item {:?}", item.def_id);
623                 return self.fold_item_recur(item);
624             }
625             ImportItem(Import::Simple(ref name, ..)) => Some(name.clone()),
626             MacroItem(..) => None,
627             _ => item.name.clone(),
628         };
629
630         if item.is_mod() && item.attrs.inner_docs {
631             self.mod_ids.push(item.def_id);
632         }
633
634         let cx = self.cx;
635         let dox = item.attrs.collapsed_doc_value().unwrap_or_else(String::new);
636         trace!("got documentation '{}'", dox);
637
638         // find item's parent to resolve `Self` in item's docs below
639         let parent_name = self.cx.as_local_hir_id(item.def_id).and_then(|item_hir| {
640             let parent_hir = self.cx.tcx.hir().get_parent_item(item_hir);
641             let item_parent = self.cx.tcx.hir().find(parent_hir);
642             match item_parent {
643                 Some(hir::Node::Item(hir::Item {
644                     kind:
645                         hir::ItemKind::Impl {
646                             self_ty:
647                                 hir::Ty {
648                                     kind:
649                                         hir::TyKind::Path(hir::QPath::Resolved(
650                                             _,
651                                             hir::Path { segments, .. },
652                                         )),
653                                     ..
654                                 },
655                             ..
656                         },
657                     ..
658                 })) => segments.first().map(|seg| seg.ident.to_string()),
659                 Some(hir::Node::Item(hir::Item {
660                     ident, kind: hir::ItemKind::Enum(..), ..
661                 }))
662                 | Some(hir::Node::Item(hir::Item {
663                     ident, kind: hir::ItemKind::Struct(..), ..
664                 }))
665                 | Some(hir::Node::Item(hir::Item {
666                     ident, kind: hir::ItemKind::Union(..), ..
667                 }))
668                 | Some(hir::Node::Item(hir::Item {
669                     ident, kind: hir::ItemKind::Trait(..), ..
670                 })) => Some(ident.to_string()),
671                 _ => None,
672             }
673         });
674
675         for (ori_link, link_range) in markdown_links(&dox) {
676             trace!("considering link '{}'", ori_link);
677
678             // Bail early for real links.
679             if ori_link.contains('/') {
680                 continue;
681             }
682
683             // [] is mostly likely not supposed to be a link
684             if ori_link.is_empty() {
685                 continue;
686             }
687
688             let link = ori_link.replace("`", "");
689             let parts = link.split('#').collect::<Vec<_>>();
690             let (link, extra_fragment) = if parts.len() > 2 {
691                 anchor_failure(cx, &item, &link, &dox, link_range, AnchorFailure::MultipleAnchors);
692                 continue;
693             } else if parts.len() == 2 {
694                 if parts[0].trim().is_empty() {
695                     // This is an anchor to an element of the current page, nothing to do in here!
696                     continue;
697                 }
698                 (parts[0].to_owned(), Some(parts[1].to_owned()))
699             } else {
700                 (parts[0].to_owned(), None)
701             };
702             let resolved_self;
703             let mut path_str;
704             let disambiguator;
705             let (mut res, mut fragment) = {
706                 path_str = if let Ok((d, path)) = Disambiguator::from_str(&link) {
707                     disambiguator = Some(d);
708                     path
709                 } else {
710                     disambiguator = None;
711                     &link
712                 }
713                 .trim();
714
715                 if path_str.contains(|ch: char| !(ch.is_alphanumeric() || ch == ':' || ch == '_')) {
716                     continue;
717                 }
718
719                 // In order to correctly resolve intra-doc-links we need to
720                 // pick a base AST node to work from.  If the documentation for
721                 // this module came from an inner comment (//!) then we anchor
722                 // our name resolution *inside* the module.  If, on the other
723                 // hand it was an outer comment (///) then we anchor the name
724                 // resolution in the parent module on the basis that the names
725                 // used are more likely to be intended to be parent names.  For
726                 // this, we set base_node to None for inner comments since
727                 // we've already pushed this node onto the resolution stack but
728                 // for outer comments we explicitly try and resolve against the
729                 // parent_node first.
730                 let base_node = if item.is_mod() && item.attrs.inner_docs {
731                     self.mod_ids.last().copied()
732                 } else {
733                     parent_node
734                 };
735
736                 // replace `Self` with suitable item's parent name
737                 if path_str.starts_with("Self::") {
738                     if let Some(ref name) = parent_name {
739                         resolved_self = format!("{}::{}", name, &path_str[6..]);
740                         path_str = &resolved_self;
741                     }
742                 }
743
744                 match disambiguator.map(Disambiguator::ns) {
745                     Some(ns @ (ValueNS | TypeNS)) => {
746                         match self.resolve(path_str, ns, &current_item, base_node, &extra_fragment)
747                         {
748                             Ok(res) => res,
749                             Err(ErrorKind::ResolutionFailure) => {
750                                 resolution_failure(cx, &item, path_str, &dox, link_range);
751                                 // This could just be a normal link or a broken link
752                                 // we could potentially check if something is
753                                 // "intra-doc-link-like" and warn in that case.
754                                 continue;
755                             }
756                             Err(ErrorKind::AnchorFailure(msg)) => {
757                                 anchor_failure(cx, &item, &ori_link, &dox, link_range, msg);
758                                 continue;
759                             }
760                         }
761                     }
762                     None => {
763                         // Try everything!
764                         let mut candidates = PerNS {
765                             macro_ns: self
766                                 .macro_resolve(path_str, base_node)
767                                 .map(|res| (res, extra_fragment.clone())),
768                             type_ns: match self.resolve(
769                                 path_str,
770                                 TypeNS,
771                                 &current_item,
772                                 base_node,
773                                 &extra_fragment,
774                             ) {
775                                 Ok(res) => {
776                                     debug!("got res in TypeNS: {:?}", res);
777                                     Some(res)
778                                 }
779                                 Err(ErrorKind::AnchorFailure(msg)) => {
780                                     anchor_failure(cx, &item, &ori_link, &dox, link_range, msg);
781                                     continue;
782                                 }
783                                 Err(ErrorKind::ResolutionFailure) => None,
784                             },
785                             value_ns: match self.resolve(
786                                 path_str,
787                                 ValueNS,
788                                 &current_item,
789                                 base_node,
790                                 &extra_fragment,
791                             ) {
792                                 Ok(res) => Some(res),
793                                 Err(ErrorKind::AnchorFailure(msg)) => {
794                                     anchor_failure(cx, &item, &ori_link, &dox, link_range, msg);
795                                     continue;
796                                 }
797                                 Err(ErrorKind::ResolutionFailure) => None,
798                             }
799                             .and_then(|(res, fragment)| {
800                                 // Constructors are picked up in the type namespace.
801                                 match res {
802                                     Res::Def(DefKind::Ctor(..), _) | Res::SelfCtor(..) => None,
803                                     _ => match (fragment, extra_fragment) {
804                                         (Some(fragment), Some(_)) => {
805                                             // Shouldn't happen but who knows?
806                                             Some((res, Some(fragment)))
807                                         }
808                                         (fragment, None) | (None, fragment) => {
809                                             Some((res, fragment))
810                                         }
811                                     },
812                                 }
813                             }),
814                         };
815
816                         if candidates.is_empty() {
817                             resolution_failure(cx, &item, path_str, &dox, link_range);
818                             // this could just be a normal link
819                             continue;
820                         }
821
822                         let len = candidates.clone().present_items().count();
823
824                         if len == 1 {
825                             candidates.present_items().next().unwrap()
826                         } else if len == 2 && is_derive_trait_collision(&candidates) {
827                             candidates.type_ns.unwrap()
828                         } else {
829                             if is_derive_trait_collision(&candidates) {
830                                 candidates.macro_ns = None;
831                             }
832                             let candidates =
833                                 candidates.map(|candidate| candidate.map(|(res, _)| res));
834                             ambiguity_error(
835                                 cx,
836                                 &item,
837                                 path_str,
838                                 &dox,
839                                 link_range,
840                                 candidates.present_items().collect(),
841                             );
842                             continue;
843                         }
844                     }
845                     Some(MacroNS) => {
846                         if let Some(res) = self.macro_resolve(path_str, base_node) {
847                             (res, extra_fragment)
848                         } else {
849                             resolution_failure(cx, &item, path_str, &dox, link_range);
850                             continue;
851                         }
852                     }
853                 }
854             };
855
856             // Check for a primitive which might conflict with a module
857             // Report the ambiguity and require that the user specify which one they meant.
858             // FIXME: could there ever be a primitive not in the type namespace?
859             if matches!(
860                 disambiguator,
861                 None | Some(Disambiguator::Namespace(Namespace::TypeNS) | Disambiguator::Primitive)
862             ) && !matches!(res, Res::PrimTy(_))
863             {
864                 if let Some((path, prim)) = is_primitive(path_str, TypeNS) {
865                     // `prim@char`
866                     if matches!(disambiguator, Some(Disambiguator::Primitive)) {
867                         if fragment.is_some() {
868                             anchor_failure(
869                                 cx,
870                                 &item,
871                                 path_str,
872                                 &dox,
873                                 link_range,
874                                 AnchorFailure::Primitive,
875                             );
876                             continue;
877                         }
878                         res = prim;
879                         fragment = Some(path.to_owned());
880                     } else {
881                         // `[char]` when a `char` module is in scope
882                         let candidates = vec![res, prim];
883                         ambiguity_error(cx, &item, path_str, &dox, link_range, candidates);
884                         continue;
885                     }
886                 }
887             }
888
889             let report_mismatch = |specified: Disambiguator, resolved: Disambiguator| {
890                 // The resolved item did not match the disambiguator; give a better error than 'not found'
891                 let msg = format!("incompatible link kind for `{}`", path_str);
892                 report_diagnostic(cx, &msg, &item, &dox, link_range.clone(), |diag, sp| {
893                     let note = format!(
894                         "this link resolved to {} {}, which is not {} {}",
895                         resolved.article(),
896                         resolved.descr(),
897                         specified.article(),
898                         specified.descr()
899                     );
900                     diag.note(&note);
901                     suggest_disambiguator(resolved, diag, path_str, &dox, sp, &link_range);
902                 });
903             };
904             if let Res::PrimTy(_) = res {
905                 match disambiguator {
906                     Some(Disambiguator::Primitive | Disambiguator::Namespace(_)) | None => {
907                         item.attrs.links.push((ori_link, None, fragment))
908                     }
909                     Some(other) => {
910                         report_mismatch(other, Disambiguator::Primitive);
911                         continue;
912                     }
913                 }
914             } else {
915                 debug!("intra-doc link to {} resolved to {:?}", path_str, res);
916
917                 // Disallow e.g. linking to enums with `struct@`
918                 if let Res::Def(kind, _) = res {
919                     debug!("saw kind {:?} with disambiguator {:?}", kind, disambiguator);
920                     match (self.kind_side_channel.take().unwrap_or(kind), disambiguator) {
921                         | (DefKind::Const | DefKind::ConstParam | DefKind::AssocConst | DefKind::AnonConst, Some(Disambiguator::Kind(DefKind::Const)))
922                         // NOTE: this allows 'method' to mean both normal functions and associated functions
923                         // This can't cause ambiguity because both are in the same namespace.
924                         | (DefKind::Fn | DefKind::AssocFn, Some(Disambiguator::Kind(DefKind::Fn)))
925                         // These are namespaces; allow anything in the namespace to match
926                         | (_, Some(Disambiguator::Namespace(_)))
927                         // If no disambiguator given, allow anything
928                         | (_, None)
929                         // All of these are valid, so do nothing
930                         => {}
931                         (actual, Some(Disambiguator::Kind(expected))) if actual == expected => {}
932                         (_, Some(specified @ Disambiguator::Kind(_) | specified @ Disambiguator::Primitive)) => {
933                             report_mismatch(specified, Disambiguator::Kind(kind));
934                             continue;
935                         }
936                     }
937                 }
938
939                 // item can be non-local e.g. when using #[doc(primitive = "pointer")]
940                 if let Some((src_id, dst_id)) = res
941                     .opt_def_id()
942                     .and_then(|def_id| def_id.as_local())
943                     .and_then(|dst_id| item.def_id.as_local().map(|src_id| (src_id, dst_id)))
944                 {
945                     use rustc_hir::def_id::LOCAL_CRATE;
946
947                     let hir_src = self.cx.tcx.hir().local_def_id_to_hir_id(src_id);
948                     let hir_dst = self.cx.tcx.hir().local_def_id_to_hir_id(dst_id);
949
950                     if self.cx.tcx.privacy_access_levels(LOCAL_CRATE).is_exported(hir_src)
951                         && !self.cx.tcx.privacy_access_levels(LOCAL_CRATE).is_exported(hir_dst)
952                     {
953                         privacy_error(cx, &item, &path_str, &dox, link_range);
954                         continue;
955                     }
956                 }
957                 let id = register_res(cx, res);
958                 item.attrs.links.push((ori_link, Some(id), fragment));
959             }
960         }
961
962         if item.is_mod() && !item.attrs.inner_docs {
963             self.mod_ids.push(item.def_id);
964         }
965
966         if item.is_mod() {
967             let ret = self.fold_item_recur(item);
968
969             self.mod_ids.pop();
970
971             ret
972         } else {
973             self.fold_item_recur(item)
974         }
975     }
976 }
977
978 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
979 enum Disambiguator {
980     Primitive,
981     Kind(DefKind),
982     Namespace(Namespace),
983 }
984
985 impl Disambiguator {
986     /// (disambiguator, path_str)
987     fn from_str(link: &str) -> Result<(Self, &str), ()> {
988         use Disambiguator::{Kind, Namespace as NS, Primitive};
989
990         let find_suffix = || {
991             let suffixes = [
992                 ("!()", DefKind::Macro(MacroKind::Bang)),
993                 ("()", DefKind::Fn),
994                 ("!", DefKind::Macro(MacroKind::Bang)),
995             ];
996             for &(suffix, kind) in &suffixes {
997                 if link.ends_with(suffix) {
998                     return Ok((Kind(kind), link.trim_end_matches(suffix)));
999                 }
1000             }
1001             Err(())
1002         };
1003
1004         if let Some(idx) = link.find('@') {
1005             let (prefix, rest) = link.split_at(idx);
1006             let d = match prefix {
1007                 "struct" => Kind(DefKind::Struct),
1008                 "enum" => Kind(DefKind::Enum),
1009                 "trait" => Kind(DefKind::Trait),
1010                 "union" => Kind(DefKind::Union),
1011                 "module" | "mod" => Kind(DefKind::Mod),
1012                 "const" | "constant" => Kind(DefKind::Const),
1013                 "static" => Kind(DefKind::Static),
1014                 "function" | "fn" | "method" => Kind(DefKind::Fn),
1015                 "derive" => Kind(DefKind::Macro(MacroKind::Derive)),
1016                 "type" => NS(Namespace::TypeNS),
1017                 "value" => NS(Namespace::ValueNS),
1018                 "macro" => NS(Namespace::MacroNS),
1019                 "prim" | "primitive" => Primitive,
1020                 _ => return find_suffix(),
1021             };
1022             Ok((d, &rest[1..]))
1023         } else {
1024             find_suffix()
1025         }
1026     }
1027
1028     /// WARNING: panics on `Res::Err`
1029     fn from_res(res: Res) -> Self {
1030         match res {
1031             Res::Def(kind, _) => Disambiguator::Kind(kind),
1032             Res::PrimTy(_) => Disambiguator::Primitive,
1033             _ => Disambiguator::Namespace(res.ns().expect("can't call `from_res` on Res::err")),
1034         }
1035     }
1036
1037     /// Return (description of the change, suggestion)
1038     fn display_for(self, path_str: &str) -> (&'static str, String) {
1039         const PREFIX: &str = "prefix with the item kind";
1040         const FUNCTION: &str = "add parentheses";
1041         const MACRO: &str = "add an exclamation mark";
1042
1043         let kind = match self {
1044             Disambiguator::Primitive => return (PREFIX, format!("prim@{}", path_str)),
1045             Disambiguator::Kind(kind) => kind,
1046             Disambiguator::Namespace(_) => panic!("display_for cannot be used on namespaces"),
1047         };
1048         if kind == DefKind::Macro(MacroKind::Bang) {
1049             return (MACRO, format!("{}!", path_str));
1050         } else if kind == DefKind::Fn || kind == DefKind::AssocFn {
1051             return (FUNCTION, format!("{}()", path_str));
1052         }
1053
1054         let prefix = match kind {
1055             DefKind::Struct => "struct",
1056             DefKind::Enum => "enum",
1057             DefKind::Trait => "trait",
1058             DefKind::Union => "union",
1059             DefKind::Mod => "mod",
1060             DefKind::Const | DefKind::ConstParam | DefKind::AssocConst | DefKind::AnonConst => {
1061                 "const"
1062             }
1063             DefKind::Static => "static",
1064             DefKind::Macro(MacroKind::Derive) => "derive",
1065             // Now handle things that don't have a specific disambiguator
1066             _ => match kind
1067                 .ns()
1068                 .expect("tried to calculate a disambiguator for a def without a namespace?")
1069             {
1070                 Namespace::TypeNS => "type",
1071                 Namespace::ValueNS => "value",
1072                 Namespace::MacroNS => "macro",
1073             },
1074         };
1075
1076         // FIXME: if this is an implied shortcut link, it's bad style to suggest `@`
1077         (PREFIX, format!("{}@{}", prefix, path_str))
1078     }
1079
1080     fn ns(self) -> Namespace {
1081         match self {
1082             Self::Namespace(n) => n,
1083             Self::Kind(k) => {
1084                 k.ns().expect("only DefKinds with a valid namespace can be disambiguators")
1085             }
1086             Self::Primitive => TypeNS,
1087         }
1088     }
1089
1090     fn article(self) -> &'static str {
1091         match self {
1092             Self::Namespace(_) => panic!("article() doesn't make sense for namespaces"),
1093             Self::Kind(k) => k.article(),
1094             Self::Primitive => "a",
1095         }
1096     }
1097
1098     fn descr(self) -> &'static str {
1099         match self {
1100             Self::Namespace(n) => n.descr(),
1101             // HACK(jynelson): by looking at the source I saw the DefId we pass
1102             // for `expected.descr()` doesn't matter, since it's not a crate
1103             Self::Kind(k) => k.descr(DefId::local(hir::def_id::DefIndex::from_usize(0))),
1104             Self::Primitive => "builtin type",
1105         }
1106     }
1107 }
1108
1109 /// Reports a diagnostic for an intra-doc link.
1110 ///
1111 /// If no link range is provided, or the source span of the link cannot be determined, the span of
1112 /// the entire documentation block is used for the lint. If a range is provided but the span
1113 /// calculation fails, a note is added to the diagnostic pointing to the link in the markdown.
1114 ///
1115 /// The `decorate` callback is invoked in all cases to allow further customization of the
1116 /// diagnostic before emission. If the span of the link was able to be determined, the second
1117 /// parameter of the callback will contain it, and the primary span of the diagnostic will be set
1118 /// to it.
1119 fn report_diagnostic(
1120     cx: &DocContext<'_>,
1121     msg: &str,
1122     item: &Item,
1123     dox: &str,
1124     link_range: Option<Range<usize>>,
1125     decorate: impl FnOnce(&mut DiagnosticBuilder<'_>, Option<rustc_span::Span>),
1126 ) {
1127     let hir_id = match cx.as_local_hir_id(item.def_id) {
1128         Some(hir_id) => hir_id,
1129         None => {
1130             // If non-local, no need to check anything.
1131             info!("ignoring warning from parent crate: {}", msg);
1132             return;
1133         }
1134     };
1135
1136     let attrs = &item.attrs;
1137     let sp = span_of_attrs(attrs).unwrap_or(item.source.span());
1138
1139     cx.tcx.struct_span_lint_hir(lint::builtin::BROKEN_INTRA_DOC_LINKS, hir_id, sp, |lint| {
1140         let mut diag = lint.build(msg);
1141
1142         let span = link_range
1143             .as_ref()
1144             .and_then(|range| super::source_span_for_markdown_range(cx, dox, range, attrs));
1145
1146         if let Some(link_range) = link_range {
1147             if let Some(sp) = span {
1148                 diag.set_span(sp);
1149             } else {
1150                 // blah blah blah\nblah\nblah [blah] blah blah\nblah blah
1151                 //                       ^     ~~~~
1152                 //                       |     link_range
1153                 //                       last_new_line_offset
1154                 let last_new_line_offset = dox[..link_range.start].rfind('\n').map_or(0, |n| n + 1);
1155                 let line = dox[last_new_line_offset..].lines().next().unwrap_or("");
1156
1157                 // Print the line containing the `link_range` and manually mark it with '^'s.
1158                 diag.note(&format!(
1159                     "the link appears in this line:\n\n{line}\n\
1160                      {indicator: <before$}{indicator:^<found$}",
1161                     line = line,
1162                     indicator = "",
1163                     before = link_range.start - last_new_line_offset,
1164                     found = link_range.len(),
1165                 ));
1166             }
1167         }
1168
1169         decorate(&mut diag, span);
1170
1171         diag.emit();
1172     });
1173 }
1174
1175 fn resolution_failure(
1176     cx: &DocContext<'_>,
1177     item: &Item,
1178     path_str: &str,
1179     dox: &str,
1180     link_range: Option<Range<usize>>,
1181 ) {
1182     report_diagnostic(
1183         cx,
1184         &format!("unresolved link to `{}`", path_str),
1185         item,
1186         dox,
1187         link_range,
1188         |diag, sp| {
1189             if let Some(sp) = sp {
1190                 diag.span_label(sp, "unresolved link");
1191             }
1192
1193             diag.help(r#"to escape `[` and `]` characters, add '\' before them like `\[` or `\]`"#);
1194         },
1195     );
1196 }
1197
1198 fn anchor_failure(
1199     cx: &DocContext<'_>,
1200     item: &Item,
1201     path_str: &str,
1202     dox: &str,
1203     link_range: Option<Range<usize>>,
1204     failure: AnchorFailure,
1205 ) {
1206     let msg = match failure {
1207         AnchorFailure::MultipleAnchors => format!("`{}` contains multiple anchors", path_str),
1208         AnchorFailure::Primitive
1209         | AnchorFailure::Variant
1210         | AnchorFailure::AssocConstant
1211         | AnchorFailure::AssocType
1212         | AnchorFailure::Field
1213         | AnchorFailure::Method => {
1214             let kind = match failure {
1215                 AnchorFailure::Primitive => "primitive type",
1216                 AnchorFailure::Variant => "enum variant",
1217                 AnchorFailure::AssocConstant => "associated constant",
1218                 AnchorFailure::AssocType => "associated type",
1219                 AnchorFailure::Field => "struct field",
1220                 AnchorFailure::Method => "method",
1221                 AnchorFailure::MultipleAnchors => unreachable!("should be handled already"),
1222             };
1223
1224             format!(
1225                 "`{}` contains an anchor, but links to {kind}s are already anchored",
1226                 path_str,
1227                 kind = kind
1228             )
1229         }
1230     };
1231
1232     report_diagnostic(cx, &msg, item, dox, link_range, |diag, sp| {
1233         if let Some(sp) = sp {
1234             diag.span_label(sp, "contains invalid anchor");
1235         }
1236     });
1237 }
1238
1239 fn ambiguity_error(
1240     cx: &DocContext<'_>,
1241     item: &Item,
1242     path_str: &str,
1243     dox: &str,
1244     link_range: Option<Range<usize>>,
1245     candidates: Vec<Res>,
1246 ) {
1247     let mut msg = format!("`{}` is ", path_str);
1248
1249     match candidates.as_slice() {
1250         [first_def, second_def] => {
1251             msg += &format!(
1252                 "both {} {} and {} {}",
1253                 first_def.article(),
1254                 first_def.descr(),
1255                 second_def.article(),
1256                 second_def.descr(),
1257             );
1258         }
1259         _ => {
1260             let mut candidates = candidates.iter().peekable();
1261             while let Some(res) = candidates.next() {
1262                 if candidates.peek().is_some() {
1263                     msg += &format!("{} {}, ", res.article(), res.descr());
1264                 } else {
1265                     msg += &format!("and {} {}", res.article(), res.descr());
1266                 }
1267             }
1268         }
1269     }
1270
1271     report_diagnostic(cx, &msg, item, dox, link_range.clone(), |diag, sp| {
1272         if let Some(sp) = sp {
1273             diag.span_label(sp, "ambiguous link");
1274         } else {
1275             diag.note("ambiguous link");
1276         }
1277
1278         for res in candidates {
1279             let disambiguator = Disambiguator::from_res(res);
1280             suggest_disambiguator(disambiguator, diag, path_str, dox, sp, &link_range);
1281         }
1282     });
1283 }
1284
1285 fn suggest_disambiguator(
1286     disambiguator: Disambiguator,
1287     diag: &mut DiagnosticBuilder<'_>,
1288     path_str: &str,
1289     dox: &str,
1290     sp: Option<rustc_span::Span>,
1291     link_range: &Option<Range<usize>>,
1292 ) {
1293     let (action, mut suggestion) = disambiguator.display_for(path_str);
1294     let help = format!("to link to the {}, {}", disambiguator.descr(), action);
1295
1296     if let Some(sp) = sp {
1297         let link_range = link_range.as_ref().expect("must have a link range if we have a span");
1298         if dox.bytes().nth(link_range.start) == Some(b'`') {
1299             suggestion = format!("`{}`", suggestion);
1300         }
1301
1302         diag.span_suggestion(sp, &help, suggestion, Applicability::MaybeIncorrect);
1303     } else {
1304         diag.help(&format!("{}: {}", help, suggestion));
1305     }
1306 }
1307
1308 fn privacy_error(
1309     cx: &DocContext<'_>,
1310     item: &Item,
1311     path_str: &str,
1312     dox: &str,
1313     link_range: Option<Range<usize>>,
1314 ) {
1315     let item_name = item.name.as_deref().unwrap_or("<unknown>");
1316     let msg =
1317         format!("public documentation for `{}` links to private item `{}`", item_name, path_str);
1318
1319     report_diagnostic(cx, &msg, item, dox, link_range, |diag, sp| {
1320         if let Some(sp) = sp {
1321             diag.span_label(sp, "this item is private");
1322         }
1323
1324         let note_msg = if cx.render_options.document_private {
1325             "this link resolves only because you passed `--document-private-items`, but will break without"
1326         } else {
1327             "this link will resolve properly if you pass `--document-private-items`"
1328         };
1329         diag.note(note_msg);
1330     });
1331 }
1332
1333 /// Given an enum variant's res, return the res of its enum and the associated fragment.
1334 fn handle_variant(
1335     cx: &DocContext<'_>,
1336     res: Res,
1337     extra_fragment: &Option<String>,
1338 ) -> Result<(Res, Option<String>), ErrorKind> {
1339     use rustc_middle::ty::DefIdTree;
1340
1341     if extra_fragment.is_some() {
1342         return Err(ErrorKind::AnchorFailure(AnchorFailure::Variant));
1343     }
1344     let parent = if let Some(parent) = cx.tcx.parent(res.def_id()) {
1345         parent
1346     } else {
1347         return Err(ErrorKind::ResolutionFailure);
1348     };
1349     let parent_def = Res::Def(DefKind::Enum, parent);
1350     let variant = cx.tcx.expect_variant_res(res);
1351     Ok((parent_def, Some(format!("variant.{}", variant.ident.name))))
1352 }
1353
1354 const PRIMITIVES: &[(&str, Res)] = &[
1355     ("u8", Res::PrimTy(hir::PrimTy::Uint(rustc_ast::UintTy::U8))),
1356     ("u16", Res::PrimTy(hir::PrimTy::Uint(rustc_ast::UintTy::U16))),
1357     ("u32", Res::PrimTy(hir::PrimTy::Uint(rustc_ast::UintTy::U32))),
1358     ("u64", Res::PrimTy(hir::PrimTy::Uint(rustc_ast::UintTy::U64))),
1359     ("u128", Res::PrimTy(hir::PrimTy::Uint(rustc_ast::UintTy::U128))),
1360     ("usize", Res::PrimTy(hir::PrimTy::Uint(rustc_ast::UintTy::Usize))),
1361     ("i8", Res::PrimTy(hir::PrimTy::Int(rustc_ast::IntTy::I8))),
1362     ("i16", Res::PrimTy(hir::PrimTy::Int(rustc_ast::IntTy::I16))),
1363     ("i32", Res::PrimTy(hir::PrimTy::Int(rustc_ast::IntTy::I32))),
1364     ("i64", Res::PrimTy(hir::PrimTy::Int(rustc_ast::IntTy::I64))),
1365     ("i128", Res::PrimTy(hir::PrimTy::Int(rustc_ast::IntTy::I128))),
1366     ("isize", Res::PrimTy(hir::PrimTy::Int(rustc_ast::IntTy::Isize))),
1367     ("f32", Res::PrimTy(hir::PrimTy::Float(rustc_ast::FloatTy::F32))),
1368     ("f64", Res::PrimTy(hir::PrimTy::Float(rustc_ast::FloatTy::F64))),
1369     ("str", Res::PrimTy(hir::PrimTy::Str)),
1370     ("bool", Res::PrimTy(hir::PrimTy::Bool)),
1371     ("true", Res::PrimTy(hir::PrimTy::Bool)),
1372     ("false", Res::PrimTy(hir::PrimTy::Bool)),
1373     ("char", Res::PrimTy(hir::PrimTy::Char)),
1374 ];
1375
1376 fn is_primitive(path_str: &str, ns: Namespace) -> Option<(&'static str, Res)> {
1377     if ns == TypeNS {
1378         PRIMITIVES
1379             .iter()
1380             .filter(|x| x.0 == path_str)
1381             .copied()
1382             .map(|x| if x.0 == "true" || x.0 == "false" { ("bool", x.1) } else { x })
1383             .next()
1384     } else {
1385         None
1386     }
1387 }
1388
1389 fn primitive_impl(cx: &DocContext<'_>, path_str: &str) -> Option<&'static SmallVec<[DefId; 4]>> {
1390     Some(PrimitiveType::from_symbol(Symbol::intern(path_str))?.impls(cx.tcx))
1391 }