2021-03-15 19:55:45 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_help;
|
2021-03-16 11:06:34 -05:00
|
|
|
use clippy_utils::usage::mutated_variables;
|
|
|
|
use clippy_utils::{expr_or_init, is_trait_method};
|
2020-03-25 20:13:24 -05:00
|
|
|
use if_chain::if_chain;
|
2021-03-02 09:48:21 -06:00
|
|
|
use rustc_hir as hir;
|
|
|
|
use rustc_lint::LateContext;
|
2020-03-25 20:13:24 -05:00
|
|
|
use rustc_span::sym;
|
2021-03-02 09:48:21 -06:00
|
|
|
|
|
|
|
use super::SUSPICIOUS_MAP;
|
|
|
|
|
2020-03-25 20:13:24 -05:00
|
|
|
pub fn check<'tcx>(
|
|
|
|
cx: &LateContext<'tcx>,
|
|
|
|
expr: &hir::Expr<'_>,
|
|
|
|
map_args: &[hir::Expr<'_>],
|
|
|
|
count_args: &[hir::Expr<'_>],
|
|
|
|
) {
|
|
|
|
if_chain! {
|
|
|
|
if let [count_recv] = count_args;
|
|
|
|
if let [_, map_arg] = map_args;
|
|
|
|
if is_trait_method(cx, count_recv, sym::Iterator);
|
|
|
|
let closure = expr_or_init(cx, map_arg);
|
|
|
|
if let Some(body_id) = cx.tcx.hir().maybe_body_owned_by(closure.hir_id);
|
|
|
|
let closure_body = cx.tcx.hir().body(body_id);
|
|
|
|
if !cx.typeck_results().expr_ty(&closure_body.value).is_unit();
|
|
|
|
then {
|
|
|
|
if let Some(map_mutated_vars) = mutated_variables(&closure_body.value, cx) {
|
|
|
|
// A variable is used mutably inside of the closure. Suppress the lint.
|
|
|
|
if !map_mutated_vars.is_empty() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
span_lint_and_help(
|
|
|
|
cx,
|
|
|
|
SUSPICIOUS_MAP,
|
|
|
|
expr.span,
|
|
|
|
"this call to `map()` won't have an effect on the call to `count()`",
|
|
|
|
None,
|
|
|
|
"make sure you did not confuse `map` with `filter` or `for_each`",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2021-03-02 09:48:21 -06:00
|
|
|
}
|