Skip to content

Commit 8e15081

Browse files
committedJul 21, 2022
Remove unused field in ItemKind::KeywordItem
1 parent d60d88f commit 8e15081

File tree

10 files changed

+14
-15
lines changed

10 files changed

+14
-15
lines changed
 

‎src/librustdoc/clean/types.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -496,8 +496,7 @@ impl Item {
496496
// Primitives and Keywords are written in the source code as private modules.
497497
// The modules need to be private so that nobody actually uses them, but the
498498
// keywords and primitives that they are documenting are public.
499-
let visibility = if matches!(&kind, ItemKind::KeywordItem(..) | ItemKind::PrimitiveItem(..))
500-
{
499+
let visibility = if matches!(&kind, ItemKind::KeywordItem | ItemKind::PrimitiveItem(..)) {
501500
Visibility::Public
502501
} else {
503502
cx.tcx.visibility(def_id).clean(cx)
@@ -769,7 +768,7 @@ pub(crate) enum ItemKind {
769768
AssocTypeItem(Typedef, Vec<GenericBound>),
770769
/// An item that has been stripped by a rustdoc pass
771770
StrippedItem(Box<ItemKind>),
772-
KeywordItem(Symbol),
771+
KeywordItem,
773772
}
774773

775774
impl ItemKind {
@@ -808,7 +807,7 @@ impl ItemKind {
808807
| TyAssocTypeItem(..)
809808
| AssocTypeItem(..)
810809
| StrippedItem(_)
811-
| KeywordItem(_) => [].iter(),
810+
| KeywordItem => [].iter(),
812811
}
813812
}
814813
}

‎src/librustdoc/clean/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ pub(crate) fn krate(cx: &mut DocContext<'_>) -> Crate {
6969
)
7070
}));
7171
m.items.extend(keywords.into_iter().map(|(def_id, kw)| {
72-
Item::from_def_id_and_parts(def_id, Some(kw), ItemKind::KeywordItem(kw), cx)
72+
Item::from_def_id_and_parts(def_id, Some(kw), ItemKind::KeywordItem, cx)
7373
}));
7474
}
7575

‎src/librustdoc/fold.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ pub(crate) trait DocFolder: Sized {
6969
| AssocConstItem(..)
7070
| TyAssocTypeItem(..)
7171
| AssocTypeItem(..)
72-
| KeywordItem(_) => kind,
72+
| KeywordItem => kind,
7373
}
7474
}
7575

‎src/librustdoc/formats/cache.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ impl<'a, 'tcx> DocFolder for CacheBuilder<'a, 'tcx> {
413413
| clean::TyAssocTypeItem(..)
414414
| clean::AssocTypeItem(..)
415415
| clean::StrippedItem(..)
416-
| clean::KeywordItem(..) => {
416+
| clean::KeywordItem => {
417417
// FIXME: Do these need handling?
418418
// The person writing this comment doesn't know.
419419
// So would rather leave them to an expert,

‎src/librustdoc/formats/item_type.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl<'a> From<&'a clean::Item> for ItemType {
9191
clean::TyAssocConstItem(..) | clean::AssocConstItem(..) => ItemType::AssocConst,
9292
clean::TyAssocTypeItem(..) | clean::AssocTypeItem(..) => ItemType::AssocType,
9393
clean::ForeignTypeItem => ItemType::ForeignType,
94-
clean::KeywordItem(..) => ItemType::Keyword,
94+
clean::KeywordItem => ItemType::Keyword,
9595
clean::TraitAliasItem(..) => ItemType::TraitAlias,
9696
clean::ProcMacroItem(ref mac) => match mac.kind {
9797
MacroKind::Bang => ItemType::Macro,

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ pub(super) fn print_item(
104104
clean::StaticItem(..) | clean::ForeignStaticItem(..) => "Static ",
105105
clean::ConstantItem(..) => "Constant ",
106106
clean::ForeignTypeItem => "Foreign Type ",
107-
clean::KeywordItem(..) => "Keyword ",
107+
clean::KeywordItem => "Keyword ",
108108
clean::OpaqueTyItem(..) => "Opaque Type ",
109109
clean::TraitAliasItem(..) => "Trait Alias ",
110110
_ => {
@@ -175,7 +175,7 @@ pub(super) fn print_item(
175175
clean::StaticItem(ref i) | clean::ForeignStaticItem(ref i) => item_static(buf, cx, item, i),
176176
clean::ConstantItem(ref c) => item_constant(buf, cx, item, c),
177177
clean::ForeignTypeItem => item_foreign_type(buf, cx, item),
178-
clean::KeywordItem(_) => item_keyword(buf, cx, item),
178+
clean::KeywordItem => item_keyword(buf, cx, item),
179179
clean::OpaqueTyItem(ref e) => item_opaque_ty(buf, cx, item, e),
180180
clean::TraitAliasItem(ref ta) => item_trait_alias(buf, cx, item, ta),
181181
_ => {

‎src/librustdoc/json/conversions.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ impl JsonRenderer<'_> {
4343
let span = item.span(self.tcx);
4444
let clean::Item { name, attrs: _, kind: _, visibility, item_id, cfg: _ } = item;
4545
let inner = match *item.kind {
46-
clean::KeywordItem(_) => return None,
46+
clean::KeywordItem => return None,
4747
clean::StrippedItem(ref inner) => {
4848
match &**inner {
4949
// We document non-empty stripped modules as with `Module::is_stripped` set to
@@ -269,7 +269,7 @@ fn from_clean_item(item: clean::Item, tcx: TyCtxt<'_>) -> ItemEnum {
269269
default: Some(t.item_type.unwrap_or(t.type_).into_tcx(tcx)),
270270
},
271271
// `convert_item` early returns `None` for stripped items and keywords.
272-
KeywordItem(_) => unreachable!(),
272+
KeywordItem => unreachable!(),
273273
StrippedItem(inner) => {
274274
match *inner {
275275
ModuleItem(m) => ItemEnum::Module(Module {

‎src/librustdoc/passes/check_doc_test_visibility.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ pub(crate) fn should_have_doc_example(cx: &DocContext<'_>, item: &clean::Item) -
6969
| clean::ExternCrateItem { .. }
7070
| clean::ImportItem(_)
7171
| clean::PrimitiveItem(_)
72-
| clean::KeywordItem(_)
72+
| clean::KeywordItem
7373
// check for trait impl
7474
| clean::ImplItem(clean::Impl { trait_: Some(_), .. })
7575
)

‎src/librustdoc/passes/stripper.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ impl<'a> DocFolder for Stripper<'a> {
9898
clean::PrimitiveItem(..) => {}
9999

100100
// Keywords are never stripped
101-
clean::KeywordItem(..) => {}
101+
clean::KeywordItem => {}
102102
}
103103

104104
let fastreturn = match *i.kind {

‎src/librustdoc/visit.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pub(crate) trait DocVisitor: Sized {
4343
| AssocConstItem(..)
4444
| TyAssocTypeItem(..)
4545
| AssocTypeItem(..)
46-
| KeywordItem(_) => {}
46+
| KeywordItem => {}
4747
}
4848
}
4949

0 commit comments

Comments
 (0)
Please sign in to comment.