]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/clippy_lints/src/partialeq_ne_impl.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / clippy_lints / src / partialeq_ne_impl.rs
CommitLineData
f20569fa
XL
1use crate::utils::{is_automatically_derived, span_lint_hir};
2use if_chain::if_chain;
3use rustc_hir::{Impl, Item, ItemKind};
4use rustc_lint::{LateContext, LateLintPass};
5use rustc_session::{declare_lint_pass, declare_tool_lint};
6use rustc_span::sym;
7
8declare_clippy_lint! {
9 /// **What it does:** Checks for manual re-implementations of `PartialEq::ne`.
10 ///
11 /// **Why is this bad?** `PartialEq::ne` is required to always return the
12 /// negated result of `PartialEq::eq`, which is exactly what the default
13 /// implementation does. Therefore, there should never be any need to
14 /// re-implement it.
15 ///
16 /// **Known problems:** None.
17 ///
18 /// **Example:**
19 /// ```rust
20 /// struct Foo;
21 ///
22 /// impl PartialEq for Foo {
23 /// fn eq(&self, other: &Foo) -> bool { true }
24 /// fn ne(&self, other: &Foo) -> bool { !(self == other) }
25 /// }
26 /// ```
27 pub PARTIALEQ_NE_IMPL,
28 complexity,
29 "re-implementing `PartialEq::ne`"
30}
31
32declare_lint_pass!(PartialEqNeImpl => [PARTIALEQ_NE_IMPL]);
33
34impl<'tcx> LateLintPass<'tcx> for PartialEqNeImpl {
35 fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'_>) {
36 if_chain! {
37 if let ItemKind::Impl(Impl { of_trait: Some(ref trait_ref), items: impl_items, .. }) = item.kind;
38 let attrs = cx.tcx.hir().attrs(item.hir_id());
39 if !is_automatically_derived(attrs);
40 if let Some(eq_trait) = cx.tcx.lang_items().eq_trait();
41 if trait_ref.path.res.def_id() == eq_trait;
42 then {
43 for impl_item in impl_items {
44 if impl_item.ident.name == sym::ne {
45 span_lint_hir(
46 cx,
47 PARTIALEQ_NE_IMPL,
48 impl_item.id.hir_id(),
49 impl_item.span,
50 "re-implementing `PartialEq::ne` is unnecessary",
51 );
52 }
53 }
54 }
55 };
56 }
57}