1
Fork 0

Rollup merge of #102829 - compiler-errors:rename-impl-item-kind, r=TaKO8Ki

rename `ImplItemKind::TyAlias` to `ImplItemKind::Type`

The naming of this variant seems inconsistent given that this is not really a "type alias", and the associated type variant for `TraitItemKind` is just called `Type`.
This commit is contained in:
Yuki Okushi 2022-10-10 00:09:42 +09:00 committed by GitHub
commit 24424d0acb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 32 additions and 32 deletions

View file

@ -908,11 +908,11 @@ impl<'hir> LoweringContext<'_, 'hir> {
|this| match ty { |this| match ty {
None => { None => {
let ty = this.arena.alloc(this.ty(i.span, hir::TyKind::Err)); let ty = this.arena.alloc(this.ty(i.span, hir::TyKind::Err));
hir::ImplItemKind::TyAlias(ty) hir::ImplItemKind::Type(ty)
} }
Some(ty) => { Some(ty) => {
let ty = this.lower_ty(ty, &ImplTraitContext::TypeAliasesOpaqueTy); let ty = this.lower_ty(ty, &ImplTraitContext::TypeAliasesOpaqueTy);
hir::ImplItemKind::TyAlias(ty) hir::ImplItemKind::Type(ty)
} }
}, },
) )

View file

@ -2315,7 +2315,7 @@ pub enum ImplItemKind<'hir> {
/// An associated function implementation with the given signature and body. /// An associated function implementation with the given signature and body.
Fn(FnSig<'hir>, BodyId), Fn(FnSig<'hir>, BodyId),
/// An associated type. /// An associated type.
TyAlias(&'hir Ty<'hir>), Type(&'hir Ty<'hir>),
} }
// The name of the associated type for `Fn` return types. // The name of the associated type for `Fn` return types.

View file

@ -979,7 +979,7 @@ pub fn walk_impl_item<'v, V: Visitor<'v>>(visitor: &mut V, impl_item: &'v ImplIt
impl_item.hir_id(), impl_item.hir_id(),
); );
} }
ImplItemKind::TyAlias(ref ty) => { ImplItemKind::Type(ref ty) => {
visitor.visit_id(impl_item.hir_id()); visitor.visit_id(impl_item.hir_id());
visitor.visit_ty(ty); visitor.visit_ty(ty);
} }

View file

@ -1062,7 +1062,7 @@ fn check_impl_items_against_trait<'tcx>(
opt_trait_span, opt_trait_span,
); );
} }
hir::ImplItemKind::TyAlias(impl_ty) => { hir::ImplItemKind::Type(impl_ty) => {
let opt_trait_span = tcx.hir().span_if_local(ty_trait_item.def_id); let opt_trait_span = tcx.hir().span_if_local(ty_trait_item.def_id);
compare_ty_impl( compare_ty_impl(
tcx, tcx,

View file

@ -837,7 +837,7 @@ fn check_impl_item(tcx: TyCtxt<'_>, impl_item: &hir::ImplItem<'_>) {
let (method_sig, span) = match impl_item.kind { let (method_sig, span) = match impl_item.kind {
hir::ImplItemKind::Fn(ref sig, _) => (Some(sig), impl_item.span), hir::ImplItemKind::Fn(ref sig, _) => (Some(sig), impl_item.span),
// Constrain binding and overflow error spans to `<Ty>` in `type foo = <Ty>`. // Constrain binding and overflow error spans to `<Ty>` in `type foo = <Ty>`.
hir::ImplItemKind::TyAlias(ty) if ty.span != DUMMY_SP => (None, ty.span), hir::ImplItemKind::Type(ty) if ty.span != DUMMY_SP => (None, ty.span),
_ => (None, impl_item.span), _ => (None, impl_item.span),
}; };

View file

@ -738,7 +738,7 @@ fn convert_impl_item(tcx: TyCtxt<'_>, impl_item_id: hir::ImplItemId) {
hir::ImplItemKind::Fn(..) => { hir::ImplItemKind::Fn(..) => {
tcx.ensure().fn_sig(def_id); tcx.ensure().fn_sig(def_id);
} }
hir::ImplItemKind::TyAlias(_) => { hir::ImplItemKind::Type(_) => {
// Account for `type T = _;` // Account for `type T = _;`
let mut visitor = HirPlaceholderCollector::default(); let mut visitor = HirPlaceholderCollector::default();
visitor.visit_impl_item(impl_item); visitor.visit_impl_item(impl_item);

View file

@ -213,7 +213,7 @@ pub(super) fn generics_of(tcx: TyCtxt<'_>, def_id: DefId) -> ty::Generics {
Node::TraitItem(item) if matches!(item.kind, TraitItemKind::Type(..)) => { Node::TraitItem(item) if matches!(item.kind, TraitItemKind::Type(..)) => {
(None, Defaults::Deny) (None, Defaults::Deny)
} }
Node::ImplItem(item) if matches!(item.kind, ImplItemKind::TyAlias(..)) => { Node::ImplItem(item) if matches!(item.kind, ImplItemKind::Type(..)) => {
(None, Defaults::Deny) (None, Defaults::Deny)
} }

View file

@ -284,7 +284,7 @@ pub(super) fn type_of(tcx: TyCtxt<'_>, def_id: DefId) -> Ty<'_> {
icx.to_ty(ty) icx.to_ty(ty)
} }
} }
ImplItemKind::TyAlias(ty) => { ImplItemKind::Type(ty) => {
if tcx.impl_trait_ref(tcx.hir().get_parent_item(hir_id)).is_none() { if tcx.impl_trait_ref(tcx.hir().get_parent_item(hir_id)).is_none() {
check_feature_inherent_assoc_ty(tcx, item.span); check_feature_inherent_assoc_ty(tcx, item.span);
} }

View file

@ -117,7 +117,7 @@ fn diagnostic_hir_wf_check<'tcx>(
let ty = match loc { let ty = match loc {
WellFormedLoc::Ty(_) => match hir.get(hir_id) { WellFormedLoc::Ty(_) => match hir.get(hir_id) {
hir::Node::ImplItem(item) => match item.kind { hir::Node::ImplItem(item) => match item.kind {
hir::ImplItemKind::TyAlias(ty) => Some(ty), hir::ImplItemKind::Type(ty) => Some(ty),
hir::ImplItemKind::Const(ty, _) => Some(ty), hir::ImplItemKind::Const(ty, _) => Some(ty),
ref item => bug!("Unexpected ImplItem {:?}", item), ref item => bug!("Unexpected ImplItem {:?}", item),
}, },

View file

@ -887,7 +887,7 @@ impl<'a> State<'a> {
self.end(); // need to close a box self.end(); // need to close a box
self.ann.nested(self, Nested::Body(body)); self.ann.nested(self, Nested::Body(body));
} }
hir::ImplItemKind::TyAlias(ty) => { hir::ImplItemKind::Type(ty) => {
self.print_associated_type(ii.ident, ii.generics, None, Some(ty)); self.print_associated_type(ii.ident, ii.generics, None, Some(ty));
} }
} }

View file

@ -302,7 +302,7 @@ impl<'tcx> DirtyCleanVisitor<'tcx> {
HirNode::ImplItem(item) => match item.kind { HirNode::ImplItem(item) => match item.kind {
ImplItemKind::Fn(..) => ("Node::ImplItem", LABELS_FN_IN_IMPL), ImplItemKind::Fn(..) => ("Node::ImplItem", LABELS_FN_IN_IMPL),
ImplItemKind::Const(..) => ("NodeImplConst", LABELS_CONST_IN_IMPL), ImplItemKind::Const(..) => ("NodeImplConst", LABELS_CONST_IN_IMPL),
ImplItemKind::TyAlias(..) => ("NodeImplType", LABELS_CONST_IN_IMPL), ImplItemKind::Type(..) => ("NodeImplType", LABELS_CONST_IN_IMPL),
}, },
_ => self.tcx.sess.span_fatal( _ => self.tcx.sess.span_fatal(
attr.span, attr.span,

View file

@ -2598,7 +2598,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
for h in self.tcx.hir().parent_iter(param.hir_id) { for h in self.tcx.hir().parent_iter(param.hir_id) {
break 'origin match h.1 { break 'origin match h.1 {
Node::ImplItem(hir::ImplItem { Node::ImplItem(hir::ImplItem {
kind: hir::ImplItemKind::TyAlias(..), kind: hir::ImplItemKind::Type(..),
generics, generics,
.. ..
}) })

View file

@ -241,7 +241,7 @@ impl<'hir> Map<'hir> {
Node::ImplItem(item) => match item.kind { Node::ImplItem(item) => match item.kind {
ImplItemKind::Const(..) => DefKind::AssocConst, ImplItemKind::Const(..) => DefKind::AssocConst,
ImplItemKind::Fn(..) => DefKind::AssocFn, ImplItemKind::Fn(..) => DefKind::AssocFn,
ImplItemKind::TyAlias(..) => DefKind::AssocTy, ImplItemKind::Type(..) => DefKind::AssocTy,
}, },
Node::Variant(_) => DefKind::Variant, Node::Variant(_) => DefKind::Variant,
Node::Ctor(variant_data) => { Node::Ctor(variant_data) => {
@ -1244,7 +1244,7 @@ fn hir_id_to_string(map: Map<'_>, id: HirId) -> String {
format!("assoc const {} in {}{}", ii.ident, path_str(), id_str) format!("assoc const {} in {}{}", ii.ident, path_str(), id_str)
} }
ImplItemKind::Fn(..) => format!("method {} in {}{}", ii.ident, path_str(), id_str), ImplItemKind::Fn(..) => format!("method {} in {}{}", ii.ident, path_str(), id_str),
ImplItemKind::TyAlias(_) => { ImplItemKind::Type(_) => {
format!("assoc type {} in {}{}", ii.ident, path_str(), id_str) format!("assoc type {} in {}{}", ii.ident, path_str(), id_str)
} }
}, },

View file

@ -49,7 +49,7 @@ pub(crate) fn target_from_impl_item<'tcx>(
Target::Method(MethodKind::Inherent) Target::Method(MethodKind::Inherent)
} }
} }
hir::ImplItemKind::TyAlias(..) => Target::AssocTy, hir::ImplItemKind::Type(..) => Target::AssocTy,
} }
} }

View file

@ -391,7 +391,7 @@ impl<'v> hir_visit::Visitor<'v> for StatCollector<'v> {
fn visit_impl_item(&mut self, ii: &'v hir::ImplItem<'v>) { fn visit_impl_item(&mut self, ii: &'v hir::ImplItem<'v>) {
record_variants!( record_variants!(
(self, ii, ii.kind, Id::Node(ii.hir_id()), hir, ImplItem, ImplItemKind), (self, ii, ii.kind, Id::Node(ii.hir_id()), hir, ImplItem, ImplItemKind),
[Const, Fn, TyAlias] [Const, Fn, Type]
); );
hir_visit::walk_impl_item(self, ii) hir_visit::walk_impl_item(self, ii)
} }

View file

@ -155,7 +155,7 @@ impl<'tcx> ReachableContext<'tcx> {
let impl_did = self.tcx.hir().get_parent_item(hir_id); let impl_did = self.tcx.hir().get_parent_item(hir_id);
method_might_be_inlined(self.tcx, impl_item, impl_did.def_id) method_might_be_inlined(self.tcx, impl_item, impl_did.def_id)
} }
hir::ImplItemKind::TyAlias(_) => false, hir::ImplItemKind::Type(_) => false,
}, },
Some(_) => false, Some(_) => false,
None => false, // This will happen for default methods. None => false, // This will happen for default methods.
@ -271,7 +271,7 @@ impl<'tcx> ReachableContext<'tcx> {
self.visit_nested_body(body) self.visit_nested_body(body)
} }
} }
hir::ImplItemKind::TyAlias(_) => {} hir::ImplItemKind::Type(_) => {}
}, },
Node::Expr(&hir::Expr { Node::Expr(&hir::Expr {
kind: hir::ExprKind::Closure(&hir::Closure { body, .. }), kind: hir::ExprKind::Closure(&hir::Closure { body, .. }),

View file

@ -1574,7 +1574,7 @@ impl<'a, 'tcx> Visitor<'tcx> for ObsoleteVisiblePrivateTypesVisitor<'a, 'tcx> {
hir::ImplItemKind::Const(..) | hir::ImplItemKind::Fn(..) => { hir::ImplItemKind::Const(..) | hir::ImplItemKind::Fn(..) => {
self.access_levels.is_reachable(impl_item_ref.id.def_id.def_id) self.access_levels.is_reachable(impl_item_ref.id.def_id.def_id)
} }
hir::ImplItemKind::TyAlias(_) => false, hir::ImplItemKind::Type(_) => false,
} }
}); });
@ -1596,7 +1596,7 @@ impl<'a, 'tcx> Visitor<'tcx> for ObsoleteVisiblePrivateTypesVisitor<'a, 'tcx> {
{ {
intravisit::walk_impl_item(self, impl_item) intravisit::walk_impl_item(self, impl_item)
} }
hir::ImplItemKind::TyAlias(..) => { hir::ImplItemKind::Type(..) => {
intravisit::walk_impl_item(self, impl_item) intravisit::walk_impl_item(self, impl_item)
} }
_ => {} _ => {}
@ -1622,7 +1622,7 @@ impl<'a, 'tcx> Visitor<'tcx> for ObsoleteVisiblePrivateTypesVisitor<'a, 'tcx> {
// Those in 3. are warned with this call. // Those in 3. are warned with this call.
for impl_item_ref in impl_.items { for impl_item_ref in impl_.items {
let impl_item = self.tcx.hir().impl_item(impl_item_ref.id); let impl_item = self.tcx.hir().impl_item(impl_item_ref.id);
if let hir::ImplItemKind::TyAlias(ty) = impl_item.kind { if let hir::ImplItemKind::Type(ty) = impl_item.kind {
self.visit_ty(ty); self.visit_ty(ty);
} }
} }

View file

@ -898,7 +898,7 @@ impl<'a, 'tcx> Visitor<'tcx> for LifetimeContext<'a, 'tcx> {
Fn(..) => self.visit_early_late(impl_item.hir_id(), &impl_item.generics, |this| { Fn(..) => self.visit_early_late(impl_item.hir_id(), &impl_item.generics, |this| {
intravisit::walk_impl_item(this, impl_item) intravisit::walk_impl_item(this, impl_item)
}), }),
TyAlias(ref ty) => { Type(ref ty) => {
let generics = &impl_item.generics; let generics = &impl_item.generics;
let lifetimes: FxIndexMap<LocalDefId, Region> = generics let lifetimes: FxIndexMap<LocalDefId, Region> = generics
.params .params

View file

@ -1069,7 +1069,7 @@ impl<'tcx> DumpVisitor<'tcx> {
impl_item.span, impl_item.span,
); );
} }
hir::ImplItemKind::TyAlias(ref ty) => { hir::ImplItemKind::Type(ref ty) => {
// FIXME: uses of the assoc type should ideally point to this // FIXME: uses of the assoc type should ideally point to this
// 'def' and the name here should be a ref to the def in the // 'def' and the name here should be a ref to the def in the
// trait. // trait.

View file

@ -1659,7 +1659,7 @@ impl<'tcx> InferCtxtPrivExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
.. ..
}) })
| hir::Node::ImplItem(hir::ImplItem { | hir::Node::ImplItem(hir::ImplItem {
kind: hir::ImplItemKind::TyAlias(ty), kind: hir::ImplItemKind::Type(ty),
.. ..
}), }),
) => Some((ty.span, format!("type mismatch resolving `{}`", predicate))), ) => Some((ty.span, format!("type mismatch resolving `{}`", predicate))),

View file

@ -224,7 +224,7 @@ fn extend_cause_with_original_assoc_item_obligation<'tcx>(
}; };
let fix_span = let fix_span =
|impl_item_ref: &hir::ImplItemRef| match tcx.hir().impl_item(impl_item_ref.id).kind { |impl_item_ref: &hir::ImplItemRef| match tcx.hir().impl_item(impl_item_ref.id).kind {
hir::ImplItemKind::Const(ty, _) | hir::ImplItemKind::TyAlias(ty) => ty.span, hir::ImplItemKind::Const(ty, _) | hir::ImplItemKind::Type(ty) => ty.span,
_ => impl_item_ref.span, _ => impl_item_ref.span,
}; };

View file

@ -161,7 +161,7 @@ fn param_env(tcx: TyCtxt<'_>, def_id: DefId) -> ty::ParamEnv<'_> {
}) => hir::Constness::Const, }) => hir::Constness::Const,
hir::Node::ImplItem(hir::ImplItem { hir::Node::ImplItem(hir::ImplItem {
kind: hir::ImplItemKind::TyAlias(..) | hir::ImplItemKind::Fn(..), kind: hir::ImplItemKind::Type(..) | hir::ImplItemKind::Fn(..),
.. ..
}) => { }) => {
let parent_hir_id = tcx.hir().get_parent_node(hir_id); let parent_hir_id = tcx.hir().get_parent_node(hir_id);

View file

@ -410,7 +410,7 @@ pub(crate) fn build_impl(
let assoc_kind = match item.kind { let assoc_kind = match item.kind {
hir::ImplItemKind::Const(..) => ty::AssocKind::Const, hir::ImplItemKind::Const(..) => ty::AssocKind::Const,
hir::ImplItemKind::Fn(..) => ty::AssocKind::Fn, hir::ImplItemKind::Fn(..) => ty::AssocKind::Fn,
hir::ImplItemKind::TyAlias(..) => ty::AssocKind::Type, hir::ImplItemKind::Type(..) => ty::AssocKind::Type,
}; };
let trait_item = tcx let trait_item = tcx
.associated_items(associated_trait.def_id) .associated_items(associated_trait.def_id)

View file

@ -1094,7 +1094,7 @@ pub(crate) fn clean_impl_item<'tcx>(
let defaultness = cx.tcx.impl_defaultness(impl_.def_id); let defaultness = cx.tcx.impl_defaultness(impl_.def_id);
MethodItem(m, Some(defaultness)) MethodItem(m, Some(defaultness))
} }
hir::ImplItemKind::TyAlias(hir_ty) => { hir::ImplItemKind::Type(hir_ty) => {
let type_ = clean_ty(hir_ty, cx); let type_ = clean_ty(hir_ty, cx);
let generics = clean_generics(impl_.generics, cx); let generics = clean_generics(impl_.generics, cx);
let item_type = clean_middle_ty(hir_ty_to_ty(cx.tcx, hir_ty), cx, None); let item_type = clean_middle_ty(hir_ty_to_ty(cx.tcx, hir_ty), cx, None);

View file

@ -148,7 +148,7 @@ impl<'tcx> LateLintPass<'tcx> for MissingInline {
let desc = match impl_item.kind { let desc = match impl_item.kind {
hir::ImplItemKind::Fn(..) => "a method", hir::ImplItemKind::Fn(..) => "a method",
hir::ImplItemKind::Const(..) | hir::ImplItemKind::TyAlias(_) => return, hir::ImplItemKind::Const(..) | hir::ImplItemKind::Type(_) => return,
}; };
let assoc_item = cx.tcx.associated_item(impl_item.def_id); let assoc_item = cx.tcx.associated_item(impl_item.def_id);

View file

@ -374,7 +374,7 @@ impl<'tcx> LateLintPass<'tcx> for Types {
// Methods are covered by check_fn. // Methods are covered by check_fn.
// Type aliases are ignored because oftentimes it's impossible to // Type aliases are ignored because oftentimes it's impossible to
// make type alias declaration in trait simpler, see #1013 // make type alias declaration in trait simpler, see #1013
ImplItemKind::Fn(..) | ImplItemKind::TyAlias(..) => (), ImplItemKind::Fn(..) | ImplItemKind::Type(..) => (),
} }
} }

View file

@ -220,7 +220,7 @@ fn trait_item_search_pat(item: &TraitItem<'_>) -> (Pat, Pat) {
fn impl_item_search_pat(item: &ImplItem<'_>) -> (Pat, Pat) { fn impl_item_search_pat(item: &ImplItem<'_>) -> (Pat, Pat) {
let (start_pat, end_pat) = match &item.kind { let (start_pat, end_pat) = match &item.kind {
ImplItemKind::Const(..) => (Pat::Str("const"), Pat::Str(";")), ImplItemKind::Const(..) => (Pat::Str("const"), Pat::Str(";")),
ImplItemKind::TyAlias(..) => (Pat::Str("type"), Pat::Str(";")), ImplItemKind::Type(..) => (Pat::Str("type"), Pat::Str(";")),
ImplItemKind::Fn(sig, ..) => (fn_header_search_pat(sig.header), Pat::Str("")), ImplItemKind::Fn(sig, ..) => (fn_header_search_pat(sig.header), Pat::Str("")),
}; };
if item.vis_span.is_empty() { if item.vis_span.is_empty() {