2019-05-14 03:06:21 -05:00
|
|
|
use crate::utils::{is_automatically_derived, span_lint_hir};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2019-12-03 17:16:03 -06:00
|
|
|
use rustc::declare_lint_pass;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::hir::*;
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
2019-12-03 17:16:03 -06:00
|
|
|
use rustc_session::declare_tool_lint;
|
2016-10-29 20:33:57 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for manual re-implementations of `PartialEq::ne`.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** `PartialEq::ne` is required to always return the
|
|
|
|
/// negated result of `PartialEq::eq`, which is exactly what the default
|
|
|
|
/// implementation does. Therefore, there should never be any need to
|
|
|
|
/// re-implement it.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// struct Foo;
|
|
|
|
///
|
|
|
|
/// impl PartialEq for Foo {
|
2019-08-02 01:13:54 -05:00
|
|
|
/// fn eq(&self, other: &Foo) -> bool { true }
|
2019-03-05 10:50:33 -06:00
|
|
|
/// fn ne(&self, other: &Foo) -> bool { !(self == other) }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2016-10-29 20:33:57 -05:00
|
|
|
pub PARTIALEQ_NE_IMPL,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2016-10-29 20:33:57 -05:00
|
|
|
"re-implementing `PartialEq::ne`"
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(PartialEqNeImpl => [PARTIALEQ_NE_IMPL]);
|
2016-10-29 20:33:57 -05:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for PartialEqNeImpl {
|
2019-12-22 08:42:41 -06:00
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item<'_>) {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ItemKind::Impl(_, _, _, _, Some(ref trait_ref), _, ref impl_items) = item.kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
if !is_automatically_derived(&*item.attrs);
|
|
|
|
if let Some(eq_trait) = cx.tcx.lang_items().eq_trait();
|
2019-05-03 19:03:12 -05:00
|
|
|
if trait_ref.path.res.def_id() == eq_trait;
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
|
|
|
for impl_item in impl_items {
|
2019-05-17 16:53:54 -05:00
|
|
|
if impl_item.ident.name == sym!(ne) {
|
2019-03-12 02:01:21 -05:00
|
|
|
span_lint_hir(
|
2018-12-11 00:06:41 -06:00
|
|
|
cx,
|
|
|
|
PARTIALEQ_NE_IMPL,
|
2019-03-01 06:26:06 -06:00
|
|
|
impl_item.id.hir_id,
|
2018-12-11 00:06:41 -06:00
|
|
|
impl_item.span,
|
|
|
|
"re-implementing `PartialEq::ne` is unnecessary",
|
|
|
|
);
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
2016-10-29 20:33:57 -05:00
|
|
|
}
|
|
|
|
}
|
2017-10-23 14:18:02 -05:00
|
|
|
};
|
2016-10-29 20:33:57 -05:00
|
|
|
}
|
|
|
|
}
|