62 lines
1.8 KiB
Rust
62 lines
1.8 KiB
Rust
use crate::utils::{is_copy, match_path, paths, span_note_and_lint};
|
|
use rustc::hir::{Item, ItemKind};
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
use rustc::{declare_tool_lint, lint_array};
|
|
|
|
declare_clippy_lint! {
|
|
/// **What it does:** Checks for types that implement `Copy` as well as
|
|
/// `Iterator`.
|
|
///
|
|
/// **Why is this bad?** Implicit copies can be confusing when working with
|
|
/// iterator combinators.
|
|
///
|
|
/// **Known problems:** None.
|
|
///
|
|
/// **Example:**
|
|
/// ```rust
|
|
/// #[derive(Copy, Clone)]
|
|
/// struct Countdown(u8);
|
|
///
|
|
/// impl Iterator for Countdown {
|
|
/// // ...
|
|
/// }
|
|
///
|
|
/// let a: Vec<_> = my_iterator.take(1).collect();
|
|
/// let b: Vec<_> = my_iterator.collect();
|
|
/// ```
|
|
pub COPY_ITERATOR,
|
|
pedantic,
|
|
"implementing `Iterator` on a `Copy` type"
|
|
}
|
|
|
|
pub struct CopyIterator;
|
|
|
|
impl LintPass for CopyIterator {
|
|
fn get_lints(&self) -> LintArray {
|
|
lint_array![COPY_ITERATOR]
|
|
}
|
|
|
|
fn name(&self) -> &'static str {
|
|
"CopyIterator"
|
|
}
|
|
}
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CopyIterator {
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
|
|
if let ItemKind::Impl(_, _, _, _, Some(ref trait_ref), _, _) = item.node {
|
|
let ty = cx.tcx.type_of(cx.tcx.hir().local_def_id_from_hir_id(item.hir_id));
|
|
|
|
if is_copy(cx, ty) && match_path(&trait_ref.path, &paths::ITERATOR) {
|
|
span_note_and_lint(
|
|
cx,
|
|
COPY_ITERATOR,
|
|
item.span,
|
|
"you are implementing `Iterator` on a `Copy` type",
|
|
item.span,
|
|
"consider implementing `IntoIterator` instead",
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|