2018-12-11 00:06:41 -06:00
|
|
|
use crate::utils::{is_automatically_derived, span_lint_node};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::hir::*;
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use rustc::{declare_tool_lint, lint_array};
|
2016-10-29 20:33:57 -05: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 {
|
|
|
|
/// fn eq(&self, other: &Foo) -> bool { ... }
|
|
|
|
/// fn ne(&self, other: &Foo) -> bool { !(self == other) }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
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`"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub struct Pass;
|
|
|
|
|
|
|
|
impl LintPass for Pass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(PARTIALEQ_NE_IMPL)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2018-07-16 08:07:39 -05:00
|
|
|
if let ItemKind::Impl(_, _, _, _, Some(ref trait_ref), _, ref impl_items) = item.node;
|
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();
|
|
|
|
if trait_ref.path.def.def_id() == eq_trait;
|
|
|
|
then {
|
|
|
|
for impl_item in impl_items {
|
2018-06-28 08:46:58 -05:00
|
|
|
if impl_item.ident.name == "ne" {
|
2018-12-11 00:06:41 -06:00
|
|
|
span_lint_node(
|
|
|
|
cx,
|
|
|
|
PARTIALEQ_NE_IMPL,
|
|
|
|
impl_item.id.node_id,
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|