-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
use crate::utils::span_lint; | ||
use if_chain::if_chain; | ||
use rustc_hir::{Expr, ExprKind}; | ||
use rustc_lint::{LateContext, LateLintPass}; | ||
use rustc_session::{declare_lint_pass, declare_tool_lint}; | ||
use rustc_span::source_map::Spanned; | ||
|
||
use crate::utils::{match_def_path, paths}; | ||
use rustc_ast::ast::LitKind; | ||
use rustc_hir as hir; | ||
|
||
declare_clippy_lint! { | ||
/// **What it does:** Finds occurences of `Vec::resize(0, an_int)` | ||
/// | ||
/// **Why is this bad?** This is probably an argument inversion mistake. | ||
/// | ||
/// **Known problems:** None. | ||
/// | ||
/// **Example:** | ||
/// ```rust | ||
/// vec!(1, 2, 3, 4, 5).resize(0, 5) | ||
/// ``` | ||
pub VEC_RESIZE_TO_ZERO, | ||
correctness, | ||
"emptying a vector with `resize(0, an_int)` instead of `clear()` is probably an argument inversion mistake" | ||
} | ||
|
||
declare_lint_pass!(VecResizeToZero => [VEC_RESIZE_TO_ZERO]); | ||
|
||
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for VecResizeToZero { | ||
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) { | ||
if_chain! { | ||
if let hir::ExprKind::MethodCall(_, _, ref args) = expr.kind; | ||
if let Some(method_def_id) = cx.tables.type_dependent_def_id(expr.hir_id); | ||
if match_def_path(cx, method_def_id, &paths::VEC_RESIZE) && args.len() == 3; | ||
if let ExprKind::Lit(Spanned { node: LitKind::Int(0, _), .. }) = args[1].kind; | ||
if let ExprKind::Lit(Spanned { node: LitKind::Int(..), .. }) = args[2].kind; | ||
then { | ||
span_lint(cx, VEC_RESIZE_TO_ZERO, expr.span, "this empties the vector. It could be an argument inversion mistake. If not, call `clear()` instead."); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#![warn(clippy::vec_resize_to_zero)] | ||
|
||
fn main() { | ||
// applicable here | ||
vec![1, 2, 3, 4, 5].resize(0, 5); | ||
|
||
// not applicable | ||
vec![1, 2, 3, 4, 5].resize(2, 5); | ||
|
||
// applicable here, but only implemented for integer litterals for now | ||
vec!["foo", "bar", "baz"].resize(0, "bar"); | ||
|
||
// not applicable | ||
vec!["foo", "bar", "baz"].resize(2, "bar") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
error: this empties the vector. This is probably an argument inversion mistake. If not, call `clear()` instead. | ||
--> $DIR/vec_resize_to_zero.rs:5:5 | ||
| | ||
LL | vec![1, 2, 3, 4, 5].resize(0, 5); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `#[deny(clippy::vec_resize_to_zero)]` on by default | ||
|
||
error: unknown clippy lint: clippy::vec_resize_to_zero | ||
--> $DIR/vec_resize_to_zero.rs:1:9 | ||
| | ||
LL | #![warn(clippy::vec_resize_to_zero)] | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::unknown-clippy-lints` implied by `-D warnings` | ||
|
||
error: aborting due to 2 previous errors | ||
|