2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint_hir;
|
|
|
|
use clippy_utils::is_automatically_derived;
|
2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2021-01-15 09:56:44 +00:00
|
|
|
use rustc_hir::{Impl, Item, ItemKind};
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-11-05 13:29:48 +00:00
|
|
|
use rustc_span::sym;
|
2016-10-30 01:33:57 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for manual re-implementations of `PartialEq::ne`.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// `PartialEq::ne` is required to always return the
|
2019-03-05 16:50:33 +00:00
|
|
|
/// negated result of `PartialEq::eq`, which is exactly what the default
|
|
|
|
/// implementation does. Therefore, there should never be any need to
|
|
|
|
/// re-implement it.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```rust
|
|
|
|
/// struct Foo;
|
|
|
|
///
|
|
|
|
/// impl PartialEq for Foo {
|
2019-08-02 06:13:54 +00:00
|
|
|
/// fn eq(&self, other: &Foo) -> bool { true }
|
2019-03-05 16:50:33 +00:00
|
|
|
/// fn ne(&self, other: &Foo) -> bool { !(self == other) }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-10-30 01:33:57 +00:00
|
|
|
pub PARTIALEQ_NE_IMPL,
|
2018-03-28 13:24:26 +00:00
|
|
|
complexity,
|
2016-10-30 01:33:57 +00:00
|
|
|
"re-implementing `PartialEq::ne`"
|
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(PartialEqNeImpl => [PARTIALEQ_NE_IMPL]);
|
2016-10-30 01:33:57 +00:00
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for PartialEqNeImpl {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'_>) {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2020-11-22 22:46:21 +00:00
|
|
|
if let ItemKind::Impl(Impl { of_trait: Some(ref trait_ref), items: impl_items, .. }) = item.kind;
|
2021-01-24 12:17:54 +00:00
|
|
|
let attrs = cx.tcx.hir().attrs(item.hir_id());
|
|
|
|
if !is_automatically_derived(attrs);
|
2017-10-23 19:18:02 +00:00
|
|
|
if let Some(eq_trait) = cx.tcx.lang_items().eq_trait();
|
2019-05-04 00:03:12 +00:00
|
|
|
if trait_ref.path.res.def_id() == eq_trait;
|
2017-10-23 19:18:02 +00:00
|
|
|
then {
|
|
|
|
for impl_item in impl_items {
|
2020-11-05 13:29:48 +00:00
|
|
|
if impl_item.ident.name == sym::ne {
|
2019-03-12 07:01:21 +00:00
|
|
|
span_lint_hir(
|
2018-12-11 06:06:41 +00:00
|
|
|
cx,
|
|
|
|
PARTIALEQ_NE_IMPL,
|
2021-01-30 22:25:03 +00:00
|
|
|
impl_item.id.hir_id(),
|
2018-12-11 06:06:41 +00:00
|
|
|
impl_item.span,
|
|
|
|
"re-implementing `PartialEq::ne` is unnecessary",
|
|
|
|
);
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2016-10-30 01:33:57 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-23 19:18:02 +00:00
|
|
|
};
|
2016-10-30 01:33:57 +00:00
|
|
|
}
|
|
|
|
}
|