2019-09-24 16:55:05 -05:00
|
|
|
|
use crate::utils::{get_parent_expr, higher, if_sequence, same_tys, snippet, span_lint_and_then, span_note_and_lint};
|
2018-11-27 14:14:15 -06:00
|
|
|
|
use crate::utils::{SpanlessEq, SpanlessHash};
|
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};
|
|
|
|
|
use rustc::ty::Ty;
|
|
|
|
|
use rustc_data_structures::fx::FxHashMap;
|
2019-12-03 17:16:03 -06:00
|
|
|
|
use rustc_session::declare_tool_lint;
|
2020-01-04 04:00:00 -06:00
|
|
|
|
use rustc_span::symbol::Symbol;
|
2018-11-27 14:14:15 -06:00
|
|
|
|
use std::collections::hash_map::Entry;
|
|
|
|
|
use std::hash::BuildHasherDefault;
|
2016-01-30 11:03:53 -06: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 consecutive `if`s with the same condition.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This is probably a copy & paste error.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-03-05 16:23:50 -06:00
|
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// if a == b {
|
|
|
|
|
/// …
|
|
|
|
|
/// } else if a == b {
|
|
|
|
|
/// …
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// Note that this lint ignores all conditions with a function call as it could
|
|
|
|
|
/// have side effects:
|
|
|
|
|
///
|
2019-03-05 16:23:50 -06:00
|
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// if foo() {
|
|
|
|
|
/// …
|
|
|
|
|
/// } else if foo() { // not linted
|
|
|
|
|
/// …
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-01-30 11:03:53 -06:00
|
|
|
|
pub IFS_SAME_COND,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
correctness,
|
2016-01-30 11:03:53 -06:00
|
|
|
|
"consecutive `ifs` with the same condition"
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-13 23:06:34 -06:00
|
|
|
|
declare_clippy_lint! {
|
|
|
|
|
/// **What it does:** Checks for consecutive `if`s with the same function call.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This is probably a copy & paste error.
|
|
|
|
|
/// Despite the fact that function can have side effects and `if` works as
|
|
|
|
|
/// intended, such an approach is implicit and can be considered a "code smell".
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```ignore
|
|
|
|
|
/// if foo() == bar {
|
|
|
|
|
/// …
|
|
|
|
|
/// } else if foo() == bar {
|
|
|
|
|
/// …
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// This probably should be:
|
|
|
|
|
/// ```ignore
|
|
|
|
|
/// if foo() == bar {
|
|
|
|
|
/// …
|
|
|
|
|
/// } else if foo() == baz {
|
|
|
|
|
/// …
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// or if the original code was not a typo and called function mutates a state,
|
|
|
|
|
/// consider move the mutation out of the `if` condition to avoid similarity to
|
|
|
|
|
/// a copy & paste error:
|
|
|
|
|
///
|
|
|
|
|
/// ```ignore
|
|
|
|
|
/// let first = foo();
|
|
|
|
|
/// if first == bar {
|
|
|
|
|
/// …
|
|
|
|
|
/// } else {
|
|
|
|
|
/// let second = foo();
|
|
|
|
|
/// if second == bar {
|
|
|
|
|
/// …
|
|
|
|
|
/// }
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
pub SAME_FUNCTIONS_IN_IF_CONDITION,
|
|
|
|
|
pedantic,
|
|
|
|
|
"consecutive `ifs` with the same function call"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// **What it does:** Checks for `if/else` with the same body as the *then* part
|
|
|
|
|
/// and the *else* part.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This is probably a copy & paste error.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-03-05 16:23:50 -06:00
|
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// let foo = if … {
|
|
|
|
|
/// 42
|
|
|
|
|
/// } else {
|
|
|
|
|
/// 42
|
|
|
|
|
/// };
|
|
|
|
|
/// ```
|
2016-01-30 12:16:49 -06:00
|
|
|
|
pub IF_SAME_THEN_ELSE,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
correctness,
|
2016-01-30 12:16:49 -06:00
|
|
|
|
"if with the same *then* and *else* blocks"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// **What it does:** Checks for `match` with identical arm bodies.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This is probably a copy & paste error. If arm bodies
|
|
|
|
|
/// are the same on purpose, you can factor them
|
|
|
|
|
/// [using `|`](https://doc.rust-lang.org/book/patterns.html#multiple-patterns).
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** False positive possible with order dependent `match`
|
|
|
|
|
/// (see issue
|
|
|
|
|
/// [#860](https://github.com/rust-lang/rust-clippy/issues/860)).
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// match foo {
|
|
|
|
|
/// Bar => bar(),
|
|
|
|
|
/// Quz => quz(),
|
|
|
|
|
/// Baz => bar(), // <= oops
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// This should probably be
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// match foo {
|
|
|
|
|
/// Bar => bar(),
|
|
|
|
|
/// Quz => quz(),
|
|
|
|
|
/// Baz => baz(), // <= fixed
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// or if the original code was not a typo:
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// match foo {
|
|
|
|
|
/// Bar | Baz => bar(), // <= shows the intent better
|
|
|
|
|
/// Quz => quz(),
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-02-09 18:22:53 -06:00
|
|
|
|
pub MATCH_SAME_ARMS,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
pedantic,
|
2016-02-09 18:22:53 -06:00
|
|
|
|
"`match` with identical arm bodies"
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-13 23:06:34 -06:00
|
|
|
|
declare_lint_pass!(CopyAndPaste => [IFS_SAME_COND, SAME_FUNCTIONS_IN_IF_CONDITION, IF_SAME_THEN_ELSE, MATCH_SAME_ARMS]);
|
2016-01-30 11:03:53 -06:00
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CopyAndPaste {
|
2019-12-27 01:12:26 -06:00
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
|
2019-08-19 11:30:32 -05:00
|
|
|
|
if !expr.span.from_expansion() {
|
2016-02-09 08:18:27 -06:00
|
|
|
|
// skip ifs directly in else, it will be checked in the parent if
|
2019-05-10 21:34:47 -05:00
|
|
|
|
if let Some(expr) = get_parent_expr(cx, expr) {
|
|
|
|
|
if let Some((_, _, Some(ref else_expr))) = higher::if_block(&expr) {
|
|
|
|
|
if else_expr.hir_id == expr.hir_id {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-02-09 08:18:27 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let (conds, blocks) = if_sequence(expr);
|
2016-11-16 14:57:56 -06:00
|
|
|
|
lint_same_then_else(cx, &blocks);
|
|
|
|
|
lint_same_cond(cx, &conds);
|
2019-11-13 23:06:34 -06:00
|
|
|
|
lint_same_fns_in_if_cond(cx, &conds);
|
2016-02-09 18:22:53 -06:00
|
|
|
|
lint_match_arms(cx, expr);
|
2016-01-30 11:03:53 -06:00
|
|
|
|
}
|
2016-01-30 12:16:49 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-30 11:03:53 -06:00
|
|
|
|
|
2016-01-30 12:16:49 -06:00
|
|
|
|
/// Implementation of `IF_SAME_THEN_ELSE`.
|
2019-12-27 01:12:26 -06:00
|
|
|
|
fn lint_same_then_else(cx: &LateContext<'_, '_>, blocks: &[&Block<'_>]) {
|
|
|
|
|
let eq: &dyn Fn(&&Block<'_>, &&Block<'_>) -> bool =
|
|
|
|
|
&|&lhs, &rhs| -> bool { SpanlessEq::new(cx).eq_block(lhs, rhs) };
|
2016-02-09 09:45:47 -06:00
|
|
|
|
|
2018-02-09 08:23:51 -06:00
|
|
|
|
if let Some((i, j)) = search_same_sequenced(blocks, eq) {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_note_and_lint(
|
|
|
|
|
cx,
|
|
|
|
|
IF_SAME_THEN_ELSE,
|
|
|
|
|
j.span,
|
|
|
|
|
"this `if` has identical blocks",
|
|
|
|
|
i.span,
|
|
|
|
|
"same as this",
|
|
|
|
|
);
|
2016-01-30 12:16:49 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Implementation of `IFS_SAME_COND`.
|
2019-12-27 01:12:26 -06:00
|
|
|
|
fn lint_same_cond(cx: &LateContext<'_, '_>, conds: &[&Expr<'_>]) {
|
|
|
|
|
let hash: &dyn Fn(&&Expr<'_>) -> u64 = &|expr| -> u64 {
|
2018-05-13 06:16:31 -05:00
|
|
|
|
let mut h = SpanlessHash::new(cx, cx.tables);
|
2016-02-09 09:45:47 -06:00
|
|
|
|
h.hash_expr(expr);
|
|
|
|
|
h.finish()
|
|
|
|
|
};
|
2016-02-09 18:22:53 -06:00
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
|
let eq: &dyn Fn(&&Expr<'_>, &&Expr<'_>) -> bool =
|
2018-11-27 14:14:15 -06:00
|
|
|
|
&|&lhs, &rhs| -> bool { SpanlessEq::new(cx).ignore_fn().eq_expr(lhs, rhs) };
|
2016-02-09 09:45:47 -06:00
|
|
|
|
|
2019-05-20 03:22:13 -05:00
|
|
|
|
for (i, j) in search_same(conds, hash, eq) {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_note_and_lint(
|
|
|
|
|
cx,
|
|
|
|
|
IFS_SAME_COND,
|
|
|
|
|
j.span,
|
|
|
|
|
"this `if` has the same condition as a previous if",
|
|
|
|
|
i.span,
|
|
|
|
|
"same as this",
|
|
|
|
|
);
|
2016-02-09 18:22:53 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-13 23:06:34 -06:00
|
|
|
|
/// Implementation of `SAME_FUNCTIONS_IN_IF_CONDITION`.
|
2019-12-27 01:12:26 -06:00
|
|
|
|
fn lint_same_fns_in_if_cond(cx: &LateContext<'_, '_>, conds: &[&Expr<'_>]) {
|
|
|
|
|
let hash: &dyn Fn(&&Expr<'_>) -> u64 = &|expr| -> u64 {
|
2019-11-13 23:06:34 -06:00
|
|
|
|
let mut h = SpanlessHash::new(cx, cx.tables);
|
|
|
|
|
h.hash_expr(expr);
|
|
|
|
|
h.finish()
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
|
let eq: &dyn Fn(&&Expr<'_>, &&Expr<'_>) -> bool = &|&lhs, &rhs| -> bool {
|
2019-11-13 23:06:34 -06:00
|
|
|
|
// Do not spawn warning if `IFS_SAME_COND` already produced it.
|
|
|
|
|
if SpanlessEq::new(cx).ignore_fn().eq_expr(lhs, rhs) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
SpanlessEq::new(cx).eq_expr(lhs, rhs)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
for (i, j) in search_same(conds, hash, eq) {
|
|
|
|
|
span_note_and_lint(
|
|
|
|
|
cx,
|
|
|
|
|
SAME_FUNCTIONS_IN_IF_CONDITION,
|
|
|
|
|
j.span,
|
|
|
|
|
"this `if` has the same function call as a previous if",
|
|
|
|
|
i.span,
|
|
|
|
|
"same as this",
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-13 06:47:54 -05:00
|
|
|
|
/// Implementation of `MATCH_SAME_ARMS`.
|
2019-12-27 01:12:26 -06:00
|
|
|
|
fn lint_match_arms<'tcx>(cx: &LateContext<'_, 'tcx>, expr: &Expr<'_>) {
|
2019-07-02 01:08:28 -05:00
|
|
|
|
fn same_bindings<'tcx>(
|
|
|
|
|
cx: &LateContext<'_, 'tcx>,
|
2019-09-05 01:56:10 -05:00
|
|
|
|
lhs: &FxHashMap<Symbol, Ty<'tcx>>,
|
|
|
|
|
rhs: &FxHashMap<Symbol, Ty<'tcx>>,
|
2019-07-02 01:08:28 -05:00
|
|
|
|
) -> bool {
|
|
|
|
|
lhs.len() == rhs.len()
|
|
|
|
|
&& lhs
|
|
|
|
|
.iter()
|
|
|
|
|
.all(|(name, l_ty)| rhs.get(name).map_or(false, |r_ty| same_tys(cx, l_ty, r_ty)))
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let ExprKind::Match(_, ref arms, MatchSource::Normal) = expr.kind {
|
2019-12-27 01:12:26 -06:00
|
|
|
|
let hash = |&(_, arm): &(usize, &Arm<'_>)| -> u64 {
|
2018-05-13 06:16:31 -05:00
|
|
|
|
let mut h = SpanlessHash::new(cx, cx.tables);
|
2017-12-01 13:25:43 -06:00
|
|
|
|
h.hash_expr(&arm.body);
|
|
|
|
|
h.finish()
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
|
let eq = |&(lindex, lhs): &(usize, &Arm<'_>), &(rindex, rhs): &(usize, &Arm<'_>)| -> bool {
|
2017-12-01 13:25:43 -06:00
|
|
|
|
let min_index = usize::min(lindex, rindex);
|
2017-12-01 13:27:02 -06:00
|
|
|
|
let max_index = usize::max(lindex, rindex);
|
2019-07-02 01:08:28 -05:00
|
|
|
|
|
2017-12-01 13:25:43 -06:00
|
|
|
|
// Arms with a guard are ignored, those can’t always be merged together
|
|
|
|
|
// This is also the case for arms in-between each there is an arm with a guard
|
|
|
|
|
(min_index..=max_index).all(|index| arms[index].guard.is_none()) &&
|
|
|
|
|
SpanlessEq::new(cx).eq_expr(&lhs.body, &rhs.body) &&
|
|
|
|
|
// all patterns should have the same bindings
|
2019-09-25 14:00:17 -05:00
|
|
|
|
same_bindings(cx, &bindings(cx, &lhs.pat), &bindings(cx, &rhs.pat))
|
2017-12-01 13:25:43 -06:00
|
|
|
|
};
|
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
|
let indexed_arms: Vec<(usize, &Arm<'_>)> = arms.iter().enumerate().collect();
|
2019-05-20 03:22:13 -05:00
|
|
|
|
for (&(_, i), &(_, j)) in search_same(&indexed_arms, hash, eq) {
|
|
|
|
|
span_lint_and_then(
|
|
|
|
|
cx,
|
|
|
|
|
MATCH_SAME_ARMS,
|
|
|
|
|
j.body.span,
|
|
|
|
|
"this `match` has identical arm bodies",
|
|
|
|
|
|db| {
|
|
|
|
|
db.span_note(i.body.span, "same as this");
|
|
|
|
|
|
|
|
|
|
// Note: this does not use `span_suggestion` on purpose:
|
|
|
|
|
// there is no clean way
|
|
|
|
|
// to remove the other arm. Building a span and suggest to replace it to ""
|
|
|
|
|
// makes an even more confusing error message. Also in order not to make up a
|
|
|
|
|
// span for the whole pattern, the suggestion is only shown when there is only
|
|
|
|
|
// one pattern. The user should know about `|` if they are already using it…
|
|
|
|
|
|
2019-09-25 14:00:17 -05:00
|
|
|
|
let lhs = snippet(cx, i.pat.span, "<pat1>");
|
|
|
|
|
let rhs = snippet(cx, j.pat.span, "<pat2>");
|
|
|
|
|
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let PatKind::Wild = j.pat.kind {
|
2019-09-25 14:00:17 -05:00
|
|
|
|
// if the last arm is _, then i could be integrated into _
|
|
|
|
|
// note that i.pat cannot be _, because that would mean that we're
|
|
|
|
|
// hiding all the subsequent arms, and rust won't compile
|
|
|
|
|
db.span_note(
|
|
|
|
|
i.body.span,
|
|
|
|
|
&format!(
|
|
|
|
|
"`{}` has the same arm body as the `_` wildcard, consider removing it`",
|
|
|
|
|
lhs
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
db.span_help(i.pat.span, &format!("consider refactoring into `{} | {}`", lhs, rhs));
|
2019-05-20 03:22:13 -05:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
2016-01-30 11:03:53 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-30 19:15:29 -06:00
|
|
|
|
/// Returns the list of bindings in a pattern.
|
2019-12-27 01:12:26 -06:00
|
|
|
|
fn bindings<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, pat: &Pat<'_>) -> FxHashMap<Symbol, Ty<'tcx>> {
|
|
|
|
|
fn bindings_impl<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, pat: &Pat<'_>, map: &mut FxHashMap<Symbol, Ty<'tcx>>) {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
match pat.kind {
|
2017-09-05 04:33:04 -05:00
|
|
|
|
PatKind::Box(ref pat) | PatKind::Ref(ref pat, _) => bindings_impl(cx, pat, map),
|
2019-12-27 01:12:26 -06:00
|
|
|
|
PatKind::TupleStruct(_, pats, _) => {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
for pat in pats {
|
|
|
|
|
bindings_impl(cx, pat, map);
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2019-02-03 01:12:07 -06:00
|
|
|
|
PatKind::Binding(.., ident, ref as_pat) => {
|
2019-09-05 01:56:10 -05:00
|
|
|
|
if let Entry::Vacant(v) = map.entry(ident.name) {
|
2017-01-13 10:04:56 -06:00
|
|
|
|
v.insert(cx.tables.pat_ty(pat));
|
2016-02-09 18:22:53 -06:00
|
|
|
|
}
|
|
|
|
|
if let Some(ref as_pat) = *as_pat {
|
|
|
|
|
bindings_impl(cx, as_pat, map);
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2019-12-27 01:12:26 -06:00
|
|
|
|
PatKind::Or(fields) | PatKind::Tuple(fields, _) => {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
for pat in fields {
|
2019-08-18 06:14:47 -05:00
|
|
|
|
bindings_impl(cx, pat, map);
|
2018-11-27 14:14:15 -06:00
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2019-12-27 01:12:26 -06:00
|
|
|
|
PatKind::Struct(_, fields, _) => {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
for pat in fields {
|
2019-08-18 06:14:47 -05:00
|
|
|
|
bindings_impl(cx, &pat.pat, map);
|
2018-11-27 14:14:15 -06:00
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2019-12-27 01:12:26 -06:00
|
|
|
|
PatKind::Slice(lhs, ref mid, rhs) => {
|
2016-02-09 18:22:53 -06:00
|
|
|
|
for pat in lhs {
|
|
|
|
|
bindings_impl(cx, pat, map);
|
|
|
|
|
}
|
|
|
|
|
if let Some(ref mid) = *mid {
|
|
|
|
|
bindings_impl(cx, mid, map);
|
|
|
|
|
}
|
|
|
|
|
for pat in rhs {
|
|
|
|
|
bindings_impl(cx, pat, map);
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2017-09-05 04:33:04 -05:00
|
|
|
|
PatKind::Lit(..) | PatKind::Range(..) | PatKind::Wild | PatKind::Path(..) => (),
|
2016-02-09 18:22:53 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-11 18:34:52 -05:00
|
|
|
|
let mut result = FxHashMap::default();
|
2016-02-09 18:22:53 -06:00
|
|
|
|
bindings_impl(cx, pat, &mut result);
|
|
|
|
|
result
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-09 08:23:51 -06:00
|
|
|
|
fn search_same_sequenced<T, Eq>(exprs: &[T], eq: Eq) -> Option<(&T, &T)>
|
|
|
|
|
where
|
|
|
|
|
Eq: Fn(&T, &T) -> bool,
|
|
|
|
|
{
|
|
|
|
|
for win in exprs.windows(2) {
|
|
|
|
|
if eq(&win[0], &win[1]) {
|
|
|
|
|
return Some((&win[0], &win[1]));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-20 03:22:13 -05:00
|
|
|
|
fn search_common_cases<'a, T, Eq>(exprs: &'a [T], eq: &Eq) -> Option<(&'a T, &'a T)>
|
2017-08-09 02:30:56 -05:00
|
|
|
|
where
|
|
|
|
|
Eq: Fn(&T, &T) -> bool,
|
2016-02-24 10:38:57 -06:00
|
|
|
|
{
|
2019-09-24 19:07:03 -05:00
|
|
|
|
if exprs.len() == 2 && eq(&exprs[0], &exprs[1]) {
|
|
|
|
|
Some((&exprs[0], &exprs[1]))
|
2019-05-20 03:22:13 -05:00
|
|
|
|
} else {
|
|
|
|
|
None
|
2016-02-09 08:18:27 -06:00
|
|
|
|
}
|
2016-01-30 11:03:53 -06:00
|
|
|
|
}
|
2019-05-16 04:27:45 -05:00
|
|
|
|
|
2019-05-20 03:22:13 -05:00
|
|
|
|
fn search_same<T, Hash, Eq>(exprs: &[T], hash: Hash, eq: Eq) -> Vec<(&T, &T)>
|
2019-05-16 04:27:45 -05:00
|
|
|
|
where
|
|
|
|
|
Hash: Fn(&T) -> u64,
|
|
|
|
|
Eq: Fn(&T, &T) -> bool,
|
|
|
|
|
{
|
2019-05-20 03:22:13 -05:00
|
|
|
|
if let Some(expr) = search_common_cases(&exprs, &eq) {
|
|
|
|
|
return vec![expr];
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-16 04:27:45 -05:00
|
|
|
|
let mut match_expr_list: Vec<(&T, &T)> = Vec::new();
|
|
|
|
|
|
|
|
|
|
let mut map: FxHashMap<_, Vec<&_>> =
|
|
|
|
|
FxHashMap::with_capacity_and_hasher(exprs.len(), BuildHasherDefault::default());
|
|
|
|
|
|
|
|
|
|
for expr in exprs {
|
|
|
|
|
match map.entry(hash(expr)) {
|
|
|
|
|
Entry::Occupied(mut o) => {
|
|
|
|
|
for o in o.get() {
|
|
|
|
|
if eq(o, expr) {
|
|
|
|
|
match_expr_list.push((o, expr));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
o.get_mut().push(expr);
|
|
|
|
|
},
|
|
|
|
|
Entry::Vacant(v) => {
|
|
|
|
|
v.insert(vec![expr]);
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-20 03:22:13 -05:00
|
|
|
|
match_expr_list
|
2019-05-16 04:27:45 -05:00
|
|
|
|
}
|