mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-22 19:13:29 +00:00
28 lines
1,015 B
Rust
28 lines
1,015 B
Rust
use super::EXPLICIT_INTO_ITER_LOOP;
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
|
use clippy_utils::source::snippet_with_applicability;
|
|
use rustc_errors::Applicability;
|
|
use rustc_hir::Expr;
|
|
use rustc_lint::LateContext;
|
|
use rustc_middle::ty::TyS;
|
|
|
|
pub(super) fn check(cx: &LateContext<'_>, args: &'hir [Expr<'hir>], arg: &Expr<'_>) {
|
|
let receiver_ty = cx.typeck_results().expr_ty(&args[0]);
|
|
let receiver_ty_adjusted = cx.typeck_results().expr_ty_adjusted(&args[0]);
|
|
if !TyS::same_type(receiver_ty, receiver_ty_adjusted) {
|
|
return;
|
|
}
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
let object = snippet_with_applicability(cx, args[0].span, "_", &mut applicability);
|
|
span_lint_and_sugg(
|
|
cx,
|
|
EXPLICIT_INTO_ITER_LOOP,
|
|
arg.span,
|
|
"it is more concise to loop over containers instead of using explicit \
|
|
iteration methods",
|
|
"to write this more concisely, try",
|
|
object.to_string(),
|
|
applicability,
|
|
);
|
|
}
|