Skip to content

Commit daa87ad

Browse files
authoredJun 25, 2021
Rollup merge of #86608 - notriddle:notriddle/cleanup-rustdoc, r=jyn514
chore(rustdoc): remove unused members of RenderType PR #86561 removes the only place the `generics` member is read. This PR does even more cleanup.
2 parents 9e46499 + 14ca894 commit daa87ad

File tree

3 files changed

+7
-52
lines changed

3 files changed

+7
-52
lines changed
 

‎src/librustdoc/formats/cache.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ crate struct Cache {
128128
/// This struct is used to wrap the `cache` and `tcx` in order to run `DocFolder`.
129129
struct CacheBuilder<'a, 'tcx> {
130130
cache: &'a mut Cache,
131-
empty_cache: Cache,
132131
tcx: TyCtxt<'tcx>,
133132
}
134133

@@ -173,7 +172,7 @@ impl Cache {
173172
self.primitive_locations.insert(prim, def_id);
174173
}
175174

176-
krate = CacheBuilder { tcx, cache: self, empty_cache: Cache::default() }.fold_crate(krate);
175+
krate = CacheBuilder { tcx, cache: self }.fold_crate(krate);
177176

178177
for (trait_did, dids, impl_) in self.orphan_trait_impls.drain(..) {
179178
if self.traits.contains_key(&trait_did) {
@@ -302,7 +301,7 @@ impl<'a, 'tcx> DocFolder for CacheBuilder<'a, 'tcx> {
302301
desc,
303302
parent,
304303
parent_idx: None,
305-
search_type: get_index_search_type(&item, &self.empty_cache, self.tcx),
304+
search_type: get_index_search_type(&item, self.tcx),
306305
aliases: item.attrs.get_doc_aliases(),
307306
});
308307
}

‎src/librustdoc/html/render/cache.rs

+5-25
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use crate::clean::types::{
1212
use crate::formats::cache::Cache;
1313
use crate::formats::item_type::ItemType;
1414
use crate::html::markdown::short_markdown_summary;
15-
use crate::html::render::{Generic, IndexItem, IndexItemFunctionType, RenderType, TypeWithKind};
15+
use crate::html::render::{IndexItem, IndexItemFunctionType, RenderType, TypeWithKind};
1616

1717
/// Indicates where an external crate can be found.
1818
crate enum ExternalLocation {
@@ -44,7 +44,7 @@ crate fn build_index<'tcx>(krate: &clean::Crate, cache: &mut Cache, tcx: TyCtxt<
4444
desc,
4545
parent: Some(did.into()),
4646
parent_idx: None,
47-
search_type: get_index_search_type(&item, cache, tcx),
47+
search_type: get_index_search_type(&item, tcx),
4848
aliases: item.attrs.get_doc_aliases(),
4949
});
5050
}
@@ -192,7 +192,6 @@ crate fn build_index<'tcx>(krate: &clean::Crate, cache: &mut Cache, tcx: TyCtxt<
192192

193193
crate fn get_index_search_type<'tcx>(
194194
item: &clean::Item,
195-
cache: &Cache,
196195
tcx: TyCtxt<'tcx>,
197196
) -> Option<IndexItemFunctionType> {
198197
let (all_types, ret_types) = match *item.kind {
@@ -204,25 +203,22 @@ crate fn get_index_search_type<'tcx>(
204203

205204
let inputs = all_types
206205
.iter()
207-
.map(|(ty, kind)| TypeWithKind::from((get_index_type(&ty, &cache), *kind)))
206+
.map(|(ty, kind)| TypeWithKind::from((get_index_type(&ty), *kind)))
208207
.filter(|a| a.ty.name.is_some())
209208
.collect();
210209
let output = ret_types
211210
.iter()
212-
.map(|(ty, kind)| TypeWithKind::from((get_index_type(&ty, &cache), *kind)))
211+
.map(|(ty, kind)| TypeWithKind::from((get_index_type(&ty), *kind)))
213212
.filter(|a| a.ty.name.is_some())
214213
.collect::<Vec<_>>();
215214
let output = if output.is_empty() { None } else { Some(output) };
216215

217216
Some(IndexItemFunctionType { inputs, output })
218217
}
219218

220-
fn get_index_type(clean_type: &clean::Type, cache: &Cache) -> RenderType {
219+
fn get_index_type(clean_type: &clean::Type) -> RenderType {
221220
RenderType {
222-
ty: clean_type.def_id_full(cache),
223-
idx: None,
224221
name: get_index_type_name(clean_type, true).map(|s| s.as_str().to_ascii_lowercase()),
225-
generics: get_generics(clean_type, cache),
226222
}
227223
}
228224

@@ -254,22 +250,6 @@ fn get_index_type_name(clean_type: &clean::Type, accept_generic: bool) -> Option
254250
}
255251
}
256252

257-
fn get_generics(clean_type: &clean::Type, cache: &Cache) -> Option<Vec<Generic>> {
258-
clean_type.generics().and_then(|types| {
259-
let r = types
260-
.iter()
261-
.filter_map(|t| {
262-
get_index_type_name(t, false).map(|name| Generic {
263-
name: name.as_str().to_ascii_lowercase(),
264-
defid: t.def_id_full(cache),
265-
idx: None,
266-
})
267-
})
268-
.collect::<Vec<_>>();
269-
if r.is_empty() { None } else { Some(r) }
270-
})
271-
}
272-
273253
/// The point of this function is to replace bounds with types.
274254
///
275255
/// i.e. `[T, U]` when you have the following bounds: `T: Display, U: Option<T>` will return

‎src/librustdoc/html/render/mod.rs

-24
Original file line numberDiff line numberDiff line change
@@ -95,31 +95,7 @@ crate struct IndexItem {
9595
/// A type used for the search index.
9696
#[derive(Debug)]
9797
crate struct RenderType {
98-
ty: Option<DefId>,
99-
idx: Option<usize>,
10098
name: Option<String>,
101-
generics: Option<Vec<Generic>>,
102-
}
103-
104-
/// A type used for the search index.
105-
#[derive(Debug)]
106-
crate struct Generic {
107-
name: String,
108-
defid: Option<DefId>,
109-
idx: Option<usize>,
110-
}
111-
112-
impl Serialize for Generic {
113-
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
114-
where
115-
S: Serializer,
116-
{
117-
if let Some(id) = self.idx {
118-
serializer.serialize_some(&id)
119-
} else {
120-
serializer.serialize_some(&self.name)
121-
}
122-
}
12399
}
124100

125101
/// Full type of functions/methods in the search index.

0 commit comments

Comments
 (0)
Please sign in to comment.