]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/passes/strip_private.rs
rustdoc: remove unused CSS `#main-content > table td`
[rust.git] / src / librustdoc / passes / strip_private.rs
1 //! Strip all private items from the output. Additionally implies strip_priv_imports.
2 //! Basically, the goal is to remove items that are not relevant for public documentation.
3 use crate::clean::{self, ItemIdSet};
4 use crate::core::DocContext;
5 use crate::fold::DocFolder;
6 use crate::passes::{ImplStripper, ImportStripper, Pass, Stripper};
7
8 pub(crate) const STRIP_PRIVATE: Pass = Pass {
9     name: "strip-private",
10     run: strip_private,
11     description: "strips all private items from a crate which cannot be seen externally, \
12                   implies strip-priv-imports",
13 };
14
15 /// Strip private items from the point of view of a crate or externally from a
16 /// crate, specified by the `xcrate` flag.
17 pub(crate) fn strip_private(mut krate: clean::Crate, cx: &mut DocContext<'_>) -> clean::Crate {
18     // This stripper collects all *retained* nodes.
19     let mut retained = ItemIdSet::default();
20     let is_json_output = cx.output_format.is_json() && !cx.show_coverage;
21
22     // strip all private items
23     {
24         let mut stripper = Stripper {
25             retained: &mut retained,
26             access_levels: &cx.cache.access_levels,
27             update_retained: true,
28             is_json_output,
29         };
30         krate = ImportStripper.fold_crate(stripper.fold_crate(krate));
31     }
32
33     // strip all impls referencing private items
34     let mut stripper = ImplStripper {
35         retained: &retained,
36         cache: &cx.cache,
37         is_json_output,
38         document_private: cx.render_options.document_private,
39     };
40     stripper.fold_crate(krate)
41 }