use_self: switch to hir_ty_to_ty.

This commit is contained in:
Eduard Burtescu 2020-04-07 19:53:02 +00:00
parent 18520aa8b2
commit 89e14d201d

View File

@ -14,6 +14,7 @@ use rustc_middle::ty;
use rustc_middle::ty::{DefIdTree, Ty}; use rustc_middle::ty::{DefIdTree, Ty};
use rustc_session::{declare_lint_pass, declare_tool_lint}; use rustc_session::{declare_lint_pass, declare_tool_lint};
use rustc_span::symbol::kw; use rustc_span::symbol::kw;
use rustc_typeck::hir_ty_to_ty;
use crate::utils::{differing_macro_contexts, span_lint_and_sugg}; use crate::utils::{differing_macro_contexts, span_lint_and_sugg};
@ -80,37 +81,28 @@ fn span_use_self_lint(cx: &LateContext<'_, '_>, path: &Path<'_>, last_segment: O
); );
} }
struct TraitImplTyVisitor<'a, 'tcx> { // FIXME: always use this (more correct) visitor, not just in method signatures.
item_type: Ty<'tcx>, struct SemanticUseSelfVisitor<'a, 'tcx> {
cx: &'a LateContext<'a, 'tcx>, cx: &'a LateContext<'a, 'tcx>,
trait_type_walker: ty::walk::TypeWalker<'tcx>, self_ty: Ty<'tcx>,
impl_type_walker: ty::walk::TypeWalker<'tcx>,
} }
impl<'a, 'tcx> Visitor<'tcx> for TraitImplTyVisitor<'a, 'tcx> { impl<'a, 'tcx> Visitor<'tcx> for SemanticUseSelfVisitor<'a, 'tcx> {
type Map = Map<'tcx>; type Map = Map<'tcx>;
fn visit_ty(&mut self, t: &'tcx hir::Ty<'_>) { fn visit_ty(&mut self, hir_ty: &'tcx hir::Ty<'_>) {
let trait_ty = self.trait_type_walker.next(); if let TyKind::Path(QPath::Resolved(_, path)) = &hir_ty.kind {
let impl_ty = self.impl_type_walker.next(); match path.res {
def::Res::SelfTy(..) => {},
if_chain! { _ => {
if let TyKind::Path(QPath::Resolved(_, path)) = &t.kind; if hir_ty_to_ty(self.cx.tcx, hir_ty) == self.self_ty {
span_use_self_lint(self.cx, path, None);
// The implementation and trait types don't match which means that }
// the concrete type was specified by the implementation },
if impl_ty != trait_ty;
if let Some(impl_ty) = impl_ty;
if self.item_type == impl_ty;
then {
match path.res {
def::Res::SelfTy(..) => {},
_ => span_use_self_lint(self.cx, path, None)
}
} }
} }
walk_ty(self, t) walk_ty(self, hir_ty)
} }
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> { fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
@ -120,10 +112,9 @@ impl<'a, 'tcx> Visitor<'tcx> for TraitImplTyVisitor<'a, 'tcx> {
fn check_trait_method_impl_decl<'a, 'tcx>( fn check_trait_method_impl_decl<'a, 'tcx>(
cx: &'a LateContext<'a, 'tcx>, cx: &'a LateContext<'a, 'tcx>,
item_type: Ty<'tcx>,
impl_item: &ImplItem<'_>, impl_item: &ImplItem<'_>,
impl_decl: &'tcx FnDecl<'_>, impl_decl: &'tcx FnDecl<'_>,
impl_trait_ref: &ty::TraitRef<'_>, impl_trait_ref: ty::TraitRef<'tcx>,
) { ) {
let trait_method = cx let trait_method = cx
.tcx .tcx
@ -134,34 +125,35 @@ fn check_trait_method_impl_decl<'a, 'tcx>(
let trait_method_sig = cx.tcx.fn_sig(trait_method.def_id); let trait_method_sig = cx.tcx.fn_sig(trait_method.def_id);
let trait_method_sig = cx.tcx.erase_late_bound_regions(&trait_method_sig); let trait_method_sig = cx.tcx.erase_late_bound_regions(&trait_method_sig);
let impl_method_def_id = cx.tcx.hir().local_def_id(impl_item.hir_id); let output_hir_ty = if let FnRetTy::Return(ty) = &impl_decl.output {
let impl_method_sig = cx.tcx.fn_sig(impl_method_def_id);
let impl_method_sig = cx.tcx.erase_late_bound_regions(&impl_method_sig);
let output_ty = if let FnRetTy::Return(ty) = &impl_decl.output {
Some(&**ty) Some(&**ty)
} else { } else {
None None
}; };
// `impl_decl_ty` (of type `hir::Ty`) represents the type declared in the signature. // `impl_hir_ty` (of type `hir::Ty`) represents the type written in the signature.
// `impl_ty` (of type `ty:TyS`) is the concrete type that the compiler has determined for // `trait_ty` (of type `ty::Ty`) is the semantic type for the signature in the trait.
// that declaration. We use `impl_decl_ty` to see if the type was declared as `Self` // We use `impl_hir_ty` to see if the type was written as `Self`,
// and use `impl_ty` to check its concrete type. // `hir_ty_to_ty(...)` to check semantic types of paths, and
for (impl_decl_ty, (impl_ty, trait_ty)) in impl_decl.inputs.iter().chain(output_ty).zip( // `trait_ty` to determine which parts of the signature in the trait, mention
impl_method_sig // the type being implemented verbatim (as opposed to `Self`).
.inputs_and_output for (impl_hir_ty, trait_ty) in impl_decl
.iter() .inputs
.zip(trait_method_sig.inputs_and_output), .iter()
) { .chain(output_hir_ty)
let mut visitor = TraitImplTyVisitor { .zip(trait_method_sig.inputs_and_output)
cx, {
item_type, // Check if the input/output type in the trait method specifies the implemented
trait_type_walker: trait_ty.walk(), // type verbatim, and only suggest `Self` if that isn't the case.
impl_type_walker: impl_ty.walk(), // This avoids suggestions to e.g. replace `Vec<u8>` with `Vec<Self>`,
}; // in an `impl Trait for u8`, when the trait always uses `Vec<u8>`.
// See also https://github.com/rust-lang/rust-clippy/issues/2894.
let self_ty = impl_trait_ref.self_ty();
if !trait_ty.walk().any(|inner| inner == self_ty.into()) {
let mut visitor = SemanticUseSelfVisitor { cx, self_ty };
visitor.visit_ty(&impl_decl_ty); visitor.visit_ty(&impl_hir_ty);
}
} }
} }
@ -197,8 +189,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UseSelf {
let impl_item = cx.tcx.hir().impl_item(impl_item_ref.id); let impl_item = cx.tcx.hir().impl_item(impl_item_ref.id);
if let ImplItemKind::Fn(FnSig{ decl: impl_decl, .. }, impl_body_id) if let ImplItemKind::Fn(FnSig{ decl: impl_decl, .. }, impl_body_id)
= &impl_item.kind { = &impl_item.kind {
let item_type = cx.tcx.type_of(impl_def_id); check_trait_method_impl_decl(cx, impl_item, impl_decl, impl_trait_ref);
check_trait_method_impl_decl(cx, item_type, impl_item, impl_decl, &impl_trait_ref);
let body = cx.tcx.hir().body(*impl_body_id); let body = cx.tcx.hir().body(*impl_body_id);
visitor.visit_body(body); visitor.visit_body(body);