2021-03-15 19:55:45 -05:00
|
|
|
use clippy_utils::diagnostics::{multispan_sugg, span_lint, span_lint_and_then};
|
2022-01-16 09:17:22 -08:00
|
|
|
use clippy_utils::get_enclosing_block;
|
2022-01-04 22:32:02 +00:00
|
|
|
use clippy_utils::macros::{find_assert_eq_args, first_node_macro_backtrace};
|
2021-03-14 18:17:44 -05:00
|
|
|
use clippy_utils::source::snippet;
|
2021-03-13 17:01:03 -06:00
|
|
|
use clippy_utils::ty::{implements_trait, is_copy};
|
2022-01-04 22:32:02 +00:00
|
|
|
use clippy_utils::{ast_utils::is_useless_with_eq_exprs, eq_expr_value, is_in_test_function};
|
2020-10-08 23:02:16 +02:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 16:04:45 +01:00
|
|
|
use rustc_errors::Applicability;
|
2022-01-16 09:17:22 -08:00
|
|
|
use rustc_hir::{
|
|
|
|
def::Res, def_id::DefId, BinOpKind, BorrowKind, Expr, ExprKind, GenericArg, ItemKind, QPath, Ty, TyKind,
|
|
|
|
};
|
2020-10-13 23:46:23 +02:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2022-01-16 09:17:22 -08:00
|
|
|
use rustc_middle::ty::{self, TyS};
|
2020-01-11 20:37:08 +09:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2015-04-30 11:48:43 +02:00
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-02 20:37:11 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for equal operands to comparison, logical and
|
2019-03-05 11:50:33 -05:00
|
|
|
/// bitwise, difference and division binary operators (`==`, `>`, etc., `&&`,
|
|
|
|
/// `||`, `&`, `|`, `^`, `-` and `/`).
|
|
|
|
///
|
2021-07-02 20:37:11 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// This is usually just a typo or a copy and paste error.
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
2021-07-02 20:37:11 +02:00
|
|
|
/// ### Known problems
|
|
|
|
/// False negatives: We had some false positives regarding
|
2019-03-05 11:50:33 -05:00
|
|
|
/// calls (notably [racer](https://github.com/phildawes/racer) had one instance
|
|
|
|
/// of `x.pop() && x.pop()`), so we removed matching any function or method
|
2020-07-07 11:12:44 -04:00
|
|
|
/// calls. We may introduce a list of known pure functions in the future.
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
2021-07-02 20:37:11 +02:00
|
|
|
/// ### Example
|
2019-03-09 08:51:23 +01:00
|
|
|
/// ```rust
|
|
|
|
/// # let x = 1;
|
|
|
|
/// if x + 1 == x + 1 {}
|
2019-03-05 11:50:33 -05:00
|
|
|
/// ```
|
2020-10-08 23:02:16 +02:00
|
|
|
/// or
|
|
|
|
/// ```rust
|
|
|
|
/// # let a = 3;
|
|
|
|
/// # let b = 4;
|
|
|
|
/// assert_eq!(a, a);
|
|
|
|
/// ```
|
Added `clippy::version` attribute to all normal lints
So, some context for this, well, more a story. I'm not used to scripting, I've never really scripted anything, even if it's a valuable skill. I just never really needed it. Now, `@flip1995` correctly suggested using a script for this in `rust-clippy#7813`...
And I decided to write a script using nushell because why not? This was a mistake... I spend way more time on this than I would like to admit. It has definitely been more than 4 hours. It shouldn't take that long, but me being new to scripting and nushell just wasn't a good mixture... Anyway, here is the script that creates another script which adds the versions. Fun...
Just execute this on the `gh-pages` branch and the resulting `replacer.sh` in `clippy_lints` and it should all work.
```nu
mv v0.0.212 rust-1.00.0;
mv beta rust-1.57.0;
mv master rust-1.58.0;
let paths = (open ./rust-1.58.0/lints.json | select id id_span | flatten | select id path);
let versions = (
ls | where name =~ "rust-" | select name | format {name}/lints.json |
each { open $it | select id | insert version $it | str substring "5,11" version} |
group-by id | rotate counter-clockwise id version |
update version {get version | first 1} | flatten | select id version);
$paths | each { |row|
let version = ($versions | where id == ($row.id) | format {version})
let idu = ($row.id | str upcase)
$"sed -i '0,/($idu),/{s/pub ($idu),/#[clippy::version = "($version)"]\n pub ($idu),/}' ($row.path)"
} | str collect ";" | str find-replace --all '1.00.0' 'pre 1.29.0' | save "replacer.sh";
```
And this still has some problems, but at this point I just want to be done -.-
2021-10-21 21:06:26 +02:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2015-04-30 11:48:43 +02:00
|
|
|
pub EQ_OP,
|
2018-03-28 15:24:26 +02:00
|
|
|
correctness,
|
2019-01-31 01:15:29 +00:00
|
|
|
"equal operands on both sides of a comparison or bitwise combination (e.g., `x == x`)"
|
2015-04-30 11:48:43 +02:00
|
|
|
}
|
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-02 20:37:11 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for arguments to `==` which have their address
|
2019-03-05 11:50:33 -05:00
|
|
|
/// taken to satisfy a bound
|
|
|
|
/// and suggests to dereference the other argument instead
|
|
|
|
///
|
2021-07-02 20:37:11 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// It is more idiomatic to dereference the other argument.
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
2021-07-02 20:37:11 +02:00
|
|
|
/// ### Known problems
|
|
|
|
/// None
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
2021-07-02 20:37:11 +02:00
|
|
|
/// ### Example
|
2019-03-05 17:23:50 -05:00
|
|
|
/// ```ignore
|
2020-06-09 14:36:01 +00:00
|
|
|
/// // Bad
|
2019-03-05 11:50:33 -05:00
|
|
|
/// &x == y
|
2020-06-09 14:36:01 +00:00
|
|
|
///
|
|
|
|
/// // Good
|
|
|
|
/// x == *y
|
2019-03-05 11:50:33 -05:00
|
|
|
/// ```
|
Added `clippy::version` attribute to all normal lints
So, some context for this, well, more a story. I'm not used to scripting, I've never really scripted anything, even if it's a valuable skill. I just never really needed it. Now, `@flip1995` correctly suggested using a script for this in `rust-clippy#7813`...
And I decided to write a script using nushell because why not? This was a mistake... I spend way more time on this than I would like to admit. It has definitely been more than 4 hours. It shouldn't take that long, but me being new to scripting and nushell just wasn't a good mixture... Anyway, here is the script that creates another script which adds the versions. Fun...
Just execute this on the `gh-pages` branch and the resulting `replacer.sh` in `clippy_lints` and it should all work.
```nu
mv v0.0.212 rust-1.00.0;
mv beta rust-1.57.0;
mv master rust-1.58.0;
let paths = (open ./rust-1.58.0/lints.json | select id id_span | flatten | select id path);
let versions = (
ls | where name =~ "rust-" | select name | format {name}/lints.json |
each { open $it | select id | insert version $it | str substring "5,11" version} |
group-by id | rotate counter-clockwise id version |
update version {get version | first 1} | flatten | select id version);
$paths | each { |row|
let version = ($versions | where id == ($row.id) | format {version})
let idu = ($row.id | str upcase)
$"sed -i '0,/($idu),/{s/pub ($idu),/#[clippy::version = "($version)"]\n pub ($idu),/}' ($row.path)"
} | str collect ";" | str find-replace --all '1.00.0' 'pre 1.29.0' | save "replacer.sh";
```
And this still has some problems, but at this point I just want to be done -.-
2021-10-21 21:06:26 +02:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2017-03-09 10:56:17 +01:00
|
|
|
pub OP_REF,
|
2018-03-28 15:24:26 +02:00
|
|
|
style,
|
2017-03-09 10:56:17 +01:00
|
|
|
"taking a reference to satisfy the type constraints on `==`"
|
|
|
|
}
|
|
|
|
|
2019-04-08 13:43:55 -07:00
|
|
|
declare_lint_pass!(EqOp => [EQ_OP, OP_REF]);
|
2015-08-11 20:22:20 +02:00
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for EqOp {
|
2019-01-13 10:19:02 -05:00
|
|
|
#[allow(clippy::similar_names, clippy::too_many_lines)]
|
2020-06-25 23:41:36 +03:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) {
|
2022-01-04 22:32:02 +00:00
|
|
|
if_chain! {
|
|
|
|
if let Some((macro_call, macro_name)) = first_node_macro_backtrace(cx, e).find_map(|macro_call| {
|
|
|
|
let name = cx.tcx.item_name(macro_call.def_id);
|
|
|
|
matches!(name.as_str(), "assert_eq" | "assert_ne" | "debug_assert_eq" | "debug_assert_ne")
|
|
|
|
.then(|| (macro_call, name))
|
|
|
|
});
|
|
|
|
if let Some((lhs, rhs, _)) = find_assert_eq_args(cx, e, macro_call.expn);
|
|
|
|
if eq_expr_value(cx, lhs, rhs);
|
|
|
|
if macro_call.is_local();
|
|
|
|
if !is_in_test_function(cx.tcx, e.hir_id);
|
|
|
|
then {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
EQ_OP,
|
|
|
|
lhs.span.to(rhs.span),
|
|
|
|
&format!("identical args used in this `{}!` macro call", macro_name),
|
|
|
|
);
|
2020-10-13 23:46:23 +02:00
|
|
|
}
|
|
|
|
}
|
2021-04-02 17:35:32 -04:00
|
|
|
if let ExprKind::Binary(op, left, right) = e.kind {
|
2019-08-19 09:30:32 -07:00
|
|
|
if e.span.from_expansion() {
|
2018-05-29 13:17:37 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-01-22 16:48:00 +09:00
|
|
|
let macro_with_not_op = |expr_kind: &ExprKind<'_>| {
|
2021-04-02 17:35:32 -04:00
|
|
|
if let ExprKind::Unary(_, expr) = *expr_kind {
|
2021-10-29 11:14:22 -05:00
|
|
|
expr.span.from_expansion()
|
2020-01-22 16:48:00 +09:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if macro_with_not_op(&left.kind) || macro_with_not_op(&right.kind) {
|
|
|
|
return;
|
|
|
|
}
|
2021-10-12 19:18:22 +02:00
|
|
|
if is_useless_with_eq_exprs(op.node.into())
|
|
|
|
&& eq_expr_value(cx, left, right)
|
|
|
|
&& !is_in_test_function(cx.tcx, e.hir_id)
|
|
|
|
{
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
EQ_OP,
|
|
|
|
e.span,
|
|
|
|
&format!("equal expressions as operands to `{}`", op.node.as_str()),
|
|
|
|
);
|
2017-04-28 18:13:09 +02:00
|
|
|
return;
|
2017-04-28 17:03:47 +02:00
|
|
|
}
|
|
|
|
let (trait_id, requires_ref) = match op.node {
|
2018-07-12 15:50:09 +08:00
|
|
|
BinOpKind::Add => (cx.tcx.lang_items().add_trait(), false),
|
|
|
|
BinOpKind::Sub => (cx.tcx.lang_items().sub_trait(), false),
|
|
|
|
BinOpKind::Mul => (cx.tcx.lang_items().mul_trait(), false),
|
|
|
|
BinOpKind::Div => (cx.tcx.lang_items().div_trait(), false),
|
|
|
|
BinOpKind::Rem => (cx.tcx.lang_items().rem_trait(), false),
|
2017-04-28 17:03:47 +02:00
|
|
|
// don't lint short circuiting ops
|
2018-07-12 15:50:09 +08:00
|
|
|
BinOpKind::And | BinOpKind::Or => return,
|
|
|
|
BinOpKind::BitXor => (cx.tcx.lang_items().bitxor_trait(), false),
|
|
|
|
BinOpKind::BitAnd => (cx.tcx.lang_items().bitand_trait(), false),
|
|
|
|
BinOpKind::BitOr => (cx.tcx.lang_items().bitor_trait(), false),
|
|
|
|
BinOpKind::Shl => (cx.tcx.lang_items().shl_trait(), false),
|
|
|
|
BinOpKind::Shr => (cx.tcx.lang_items().shr_trait(), false),
|
|
|
|
BinOpKind::Ne | BinOpKind::Eq => (cx.tcx.lang_items().eq_trait(), true),
|
2018-11-27 21:14:15 +01:00
|
|
|
BinOpKind::Lt | BinOpKind::Le | BinOpKind::Ge | BinOpKind::Gt => {
|
2019-12-02 20:01:50 -05:00
|
|
|
(cx.tcx.lang_items().partial_ord_trait(), true)
|
2018-11-27 21:14:15 +01:00
|
|
|
},
|
2017-04-28 17:03:47 +02:00
|
|
|
};
|
|
|
|
if let Some(trait_id) = trait_id {
|
2018-08-01 22:48:41 +02:00
|
|
|
#[allow(clippy::match_same_arms)]
|
2019-09-27 17:16:06 +02:00
|
|
|
match (&left.kind, &right.kind) {
|
2017-04-28 17:03:47 +02:00
|
|
|
// do not suggest to dereference literals
|
2018-07-12 15:30:57 +08:00
|
|
|
(&ExprKind::Lit(..), _) | (_, &ExprKind::Lit(..)) => {},
|
2017-04-28 17:03:47 +02:00
|
|
|
// &foo == &bar
|
2021-04-02 17:35:32 -04:00
|
|
|
(&ExprKind::AddrOf(BorrowKind::Ref, _, l), &ExprKind::AddrOf(BorrowKind::Ref, _, r)) => {
|
2020-07-17 08:47:04 +00:00
|
|
|
let lty = cx.typeck_results().expr_ty(l);
|
|
|
|
let rty = cx.typeck_results().expr_ty(r);
|
2017-06-11 05:34:47 +03:00
|
|
|
let lcpy = is_copy(cx, lty);
|
|
|
|
let rcpy = is_copy(cx, rty);
|
2022-01-16 09:17:22 -08:00
|
|
|
if let Some((self_ty, other_ty)) = in_impl(cx, e, trait_id) {
|
|
|
|
if (are_equal(cx, rty, self_ty) && are_equal(cx, lty, other_ty))
|
|
|
|
|| (are_equal(cx, rty, other_ty) && are_equal(cx, lty, self_ty))
|
|
|
|
{
|
|
|
|
return; // Don't lint
|
|
|
|
}
|
|
|
|
}
|
2017-04-28 17:03:47 +02:00
|
|
|
// either operator autorefs or both args are copyable
|
2018-05-22 15:45:14 +02:00
|
|
|
if (requires_ref || (lcpy && rcpy)) && implements_trait(cx, lty, trait_id, &[rty.into()]) {
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
OP_REF,
|
|
|
|
e.span,
|
|
|
|
"needlessly taken reference of both operands",
|
2020-04-17 08:08:00 +02:00
|
|
|
|diag| {
|
2017-08-09 09:30:56 +02:00
|
|
|
let lsnip = snippet(cx, l.span, "...").to_string();
|
|
|
|
let rsnip = snippet(cx, r.span, "...").to_string();
|
|
|
|
multispan_sugg(
|
2020-04-17 08:08:00 +02:00
|
|
|
diag,
|
2020-05-17 17:36:26 +02:00
|
|
|
"use the values directly",
|
2017-08-09 09:30:56 +02:00
|
|
|
vec![(left.span, lsnip), (right.span, rsnip)],
|
|
|
|
);
|
|
|
|
},
|
2021-05-25 00:54:50 +00:00
|
|
|
);
|
2018-11-27 21:14:15 +01:00
|
|
|
} else if lcpy
|
|
|
|
&& !rcpy
|
2020-07-17 08:47:04 +00:00
|
|
|
&& implements_trait(cx, lty, trait_id, &[cx.typeck_results().expr_ty(right).into()])
|
2018-11-27 21:14:15 +01:00
|
|
|
{
|
2020-04-17 08:09:09 +02:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
OP_REF,
|
|
|
|
e.span,
|
|
|
|
"needlessly taken reference of left operand",
|
|
|
|
|diag| {
|
|
|
|
let lsnip = snippet(cx, l.span, "...").to_string();
|
|
|
|
diag.span_suggestion(
|
|
|
|
left.span,
|
|
|
|
"use the left value directly",
|
|
|
|
lsnip,
|
|
|
|
Applicability::MaybeIncorrect, // FIXME #2597
|
|
|
|
);
|
|
|
|
},
|
2021-05-25 00:54:50 +00:00
|
|
|
);
|
2018-11-27 21:14:15 +01:00
|
|
|
} else if !lcpy
|
|
|
|
&& rcpy
|
2020-07-17 08:47:04 +00:00
|
|
|
&& implements_trait(cx, cx.typeck_results().expr_ty(left), trait_id, &[rty.into()])
|
2018-11-27 21:14:15 +01:00
|
|
|
{
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
OP_REF,
|
|
|
|
e.span,
|
|
|
|
"needlessly taken reference of right operand",
|
2020-04-17 08:08:00 +02:00
|
|
|
|diag| {
|
2017-08-09 09:30:56 +02:00
|
|
|
let rsnip = snippet(cx, r.span, "...").to_string();
|
2020-04-17 08:08:00 +02:00
|
|
|
diag.span_suggestion(
|
2018-09-15 19:14:08 +03:00
|
|
|
right.span,
|
|
|
|
"use the right value directly",
|
|
|
|
rsnip,
|
2019-09-25 14:53:20 -07:00
|
|
|
Applicability::MaybeIncorrect, // FIXME #2597
|
2018-09-18 18:07:54 +03:00
|
|
|
);
|
2017-08-09 09:30:56 +02:00
|
|
|
},
|
2021-05-25 00:54:50 +00:00
|
|
|
);
|
2017-04-28 17:03:47 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
// &foo == bar
|
2021-04-02 17:35:32 -04:00
|
|
|
(&ExprKind::AddrOf(BorrowKind::Ref, _, l), _) => {
|
2020-07-17 08:47:04 +00:00
|
|
|
let lty = cx.typeck_results().expr_ty(l);
|
2022-01-16 09:17:22 -08:00
|
|
|
if let Some((self_ty, other_ty)) = in_impl(cx, e, trait_id) {
|
|
|
|
let rty = cx.typeck_results().expr_ty(right);
|
|
|
|
if (are_equal(cx, rty, self_ty) && are_equal(cx, lty, other_ty))
|
|
|
|
|| (are_equal(cx, rty, other_ty) && are_equal(cx, lty, self_ty))
|
|
|
|
{
|
|
|
|
return; // Don't lint
|
|
|
|
}
|
|
|
|
}
|
2017-06-11 05:34:47 +03:00
|
|
|
let lcpy = is_copy(cx, lty);
|
2018-11-27 21:14:15 +01:00
|
|
|
if (requires_ref || lcpy)
|
2020-07-17 08:47:04 +00:00
|
|
|
&& implements_trait(cx, lty, trait_id, &[cx.typeck_results().expr_ty(right).into()])
|
2018-11-27 21:14:15 +01:00
|
|
|
{
|
2020-04-17 08:09:09 +02:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
OP_REF,
|
|
|
|
e.span,
|
|
|
|
"needlessly taken reference of left operand",
|
|
|
|
|diag| {
|
|
|
|
let lsnip = snippet(cx, l.span, "...").to_string();
|
|
|
|
diag.span_suggestion(
|
|
|
|
left.span,
|
|
|
|
"use the left value directly",
|
|
|
|
lsnip,
|
|
|
|
Applicability::MaybeIncorrect, // FIXME #2597
|
|
|
|
);
|
|
|
|
},
|
2021-05-25 00:54:50 +00:00
|
|
|
);
|
2017-04-28 17:03:47 +02:00
|
|
|
}
|
2021-05-25 06:05:52 +00:00
|
|
|
},
|
2017-04-28 17:03:47 +02:00
|
|
|
// foo == &bar
|
2021-04-02 17:35:32 -04:00
|
|
|
(_, &ExprKind::AddrOf(BorrowKind::Ref, _, r)) => {
|
2020-07-17 08:47:04 +00:00
|
|
|
let rty = cx.typeck_results().expr_ty(r);
|
2022-01-16 09:17:22 -08:00
|
|
|
if let Some((self_ty, other_ty)) = in_impl(cx, e, trait_id) {
|
|
|
|
let lty = cx.typeck_results().expr_ty(left);
|
|
|
|
if (are_equal(cx, rty, self_ty) && are_equal(cx, lty, other_ty))
|
|
|
|
|| (are_equal(cx, rty, other_ty) && are_equal(cx, lty, self_ty))
|
|
|
|
{
|
|
|
|
return; // Don't lint
|
|
|
|
}
|
|
|
|
}
|
2017-06-11 05:34:47 +03:00
|
|
|
let rcpy = is_copy(cx, rty);
|
2018-11-27 21:14:15 +01:00
|
|
|
if (requires_ref || rcpy)
|
2020-07-17 08:47:04 +00:00
|
|
|
&& implements_trait(cx, cx.typeck_results().expr_ty(left), trait_id, &[rty.into()])
|
2018-11-27 21:14:15 +01:00
|
|
|
{
|
2020-04-17 08:08:00 +02:00
|
|
|
span_lint_and_then(cx, OP_REF, e.span, "taken reference of right operand", |diag| {
|
2017-04-28 17:03:47 +02:00
|
|
|
let rsnip = snippet(cx, r.span, "...").to_string();
|
2020-04-17 08:08:00 +02:00
|
|
|
diag.span_suggestion(
|
2018-09-18 18:07:54 +03:00
|
|
|
right.span,
|
|
|
|
"use the right value directly",
|
|
|
|
rsnip,
|
2019-12-03 18:24:26 +01:00
|
|
|
Applicability::MaybeIncorrect, // FIXME #2597
|
2018-09-18 18:07:54 +03:00
|
|
|
);
|
2021-05-25 00:54:50 +00:00
|
|
|
});
|
2017-03-09 10:56:17 +01:00
|
|
|
}
|
2017-04-28 17:03:47 +02:00
|
|
|
},
|
|
|
|
_ => {},
|
2017-03-09 10:56:17 +01:00
|
|
|
}
|
2015-04-30 11:48:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-16 09:17:22 -08:00
|
|
|
|
|
|
|
fn in_impl<'tcx>(cx: &LateContext<'tcx>, e: &'tcx Expr<'_>, bin_op: DefId) -> Option<(&'tcx Ty<'tcx>, &'tcx Ty<'tcx>)> {
|
|
|
|
if_chain! {
|
|
|
|
if let Some(block) = get_enclosing_block(cx, e.hir_id);
|
|
|
|
if let Some(impl_def_id) = cx.tcx.impl_of_method(block.hir_id.owner.to_def_id());
|
|
|
|
let item = cx.tcx.hir().expect_item(impl_def_id.expect_local());
|
|
|
|
if let ItemKind::Impl(item) = &item.kind;
|
|
|
|
if let Some(of_trait) = &item.of_trait;
|
|
|
|
if let Some(seg) = of_trait.path.segments.last();
|
|
|
|
if let Some(Res::Def(_, trait_id)) = seg.res;
|
|
|
|
if trait_id == bin_op;
|
|
|
|
if let Some(generic_args) = seg.args;
|
|
|
|
if let Some(GenericArg::Type(other_ty)) = generic_args.args.last();
|
|
|
|
|
|
|
|
then {
|
|
|
|
Some((item.self_ty, other_ty))
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn are_equal<'tcx>(cx: &LateContext<'tcx>, middle_ty: &TyS<'_>, hir_ty: &Ty<'_>) -> bool {
|
|
|
|
if_chain! {
|
|
|
|
if let ty::Adt(adt_def, _) = middle_ty.kind();
|
|
|
|
if let Some(local_did) = adt_def.did.as_local();
|
|
|
|
let item = cx.tcx.hir().expect_item(local_did);
|
|
|
|
let middle_ty_id = item.def_id.to_def_id();
|
|
|
|
if let TyKind::Path(QPath::Resolved(_, path)) = hir_ty.kind;
|
|
|
|
if let Res::Def(_, hir_ty_id) = path.res;
|
|
|
|
|
|
|
|
then {
|
|
|
|
hir_ty_id == middle_ty_id
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|