2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
|
|
|
use clippy_utils::is_trait_method;
|
|
|
|
use clippy_utils::source::snippet;
|
2021-03-12 08:30:50 -06:00
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use rustc_hir as hir;
|
|
|
|
use rustc_lint::LateContext;
|
2021-03-25 13:29:11 -05:00
|
|
|
use rustc_span::sym;
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
use super::ITER_SKIP_NEXT;
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
pub(super) fn check(cx: &LateContext<'_>, expr: &hir::Expr<'_>, recv: &hir::Expr<'_>, arg: &hir::Expr<'_>) {
|
2021-03-12 08:30:50 -06:00
|
|
|
// lint if caller of skip is an Iterator
|
2021-03-25 13:29:11 -05:00
|
|
|
if is_trait_method(cx, expr, sym::Iterator) {
|
2021-04-08 10:50:13 -05:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
ITER_SKIP_NEXT,
|
|
|
|
expr.span.trim_start(recv.span).unwrap(),
|
|
|
|
"called `skip(..).next()` on an iterator",
|
|
|
|
"use `nth` instead",
|
|
|
|
format!(".nth({})", snippet(cx, arg.span, "..")),
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
);
|
2021-03-12 08:30:50 -06:00
|
|
|
}
|
|
|
|
}
|