forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#5773 - giraffate:repeat_once, r=flip1995
Add a lint for `.repeat(1)` changelog: New lint `repeat_once` fix rust-lang#3028.
- Loading branch information
Showing
7 changed files
with
167 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
use crate::consts::{constant_context, Constant}; | ||
use crate::utils::{in_macro, is_type_diagnostic_item, snippet, span_lint_and_sugg, walk_ptrs_ty}; | ||
use if_chain::if_chain; | ||
use rustc_errors::Applicability; | ||
use rustc_hir::{Expr, ExprKind}; | ||
use rustc_lint::{LateContext, LateLintPass}; | ||
use rustc_session::{declare_lint_pass, declare_tool_lint}; | ||
|
||
declare_clippy_lint! { | ||
/// **What it does:** Checks for usage of `.repeat(1)` and suggest the following method for each types. | ||
/// - `.to_string()` for `str` | ||
/// - `.clone()` for `String` | ||
/// - `.to_vec()` for `slice` | ||
/// | ||
/// **Why is this bad?** For example, `String.repeat(1)` is equivalent to `.clone()`. If cloning the string is the intention behind this, `clone()` should be used. | ||
/// | ||
/// **Known problems:** None. | ||
/// | ||
/// **Example:** | ||
/// | ||
/// ```rust | ||
/// fn main() { | ||
/// let x = String::from("hello world").repeat(1); | ||
/// } | ||
/// ``` | ||
/// Use instead: | ||
/// ```rust | ||
/// fn main() { | ||
/// let x = String::from("hello world").clone(); | ||
/// } | ||
/// ``` | ||
pub REPEAT_ONCE, | ||
complexity, | ||
"using `.repeat(1)` instead of `String.clone()`, `str.to_string()` or `slice.to_vec()` " | ||
} | ||
|
||
declare_lint_pass!(RepeatOnce => [REPEAT_ONCE]); | ||
|
||
impl<'tcx> LateLintPass<'tcx> for RepeatOnce { | ||
fn check_expr(&mut self, cx: &LateContext<'_>, expr: &'tcx Expr<'_>) { | ||
if_chain! { | ||
if let ExprKind::MethodCall(ref path, _, ref args, _) = expr.kind; | ||
if path.ident.name == sym!(repeat); | ||
if let Some(Constant::Int(1)) = constant_context(cx, cx.tables()).expr(&args[1]); | ||
if !in_macro(args[0].span); | ||
then { | ||
let ty = walk_ptrs_ty(cx.tables().expr_ty(&args[0])); | ||
if ty.is_str() { | ||
span_lint_and_sugg( | ||
cx, | ||
REPEAT_ONCE, | ||
expr.span, | ||
"calling `repeat(1)` on str", | ||
"consider using `.to_string()` instead", | ||
format!("{}.to_string()", snippet(cx, args[0].span, r#""...""#)), | ||
Applicability::MachineApplicable, | ||
); | ||
} else if ty.builtin_index().is_some() { | ||
span_lint_and_sugg( | ||
cx, | ||
REPEAT_ONCE, | ||
expr.span, | ||
"calling `repeat(1)` on slice", | ||
"consider using `.to_vec()` instead", | ||
format!("{}.to_vec()", snippet(cx, args[0].span, r#""...""#)), | ||
Applicability::MachineApplicable, | ||
); | ||
} else if is_type_diagnostic_item(cx, ty, sym!(string_type)) { | ||
span_lint_and_sugg( | ||
cx, | ||
REPEAT_ONCE, | ||
expr.span, | ||
"calling `repeat(1)` on a string literal", | ||
"consider using `.clone()` instead", | ||
format!("{}.clone()", snippet(cx, args[0].span, r#""...""#)), | ||
Applicability::MachineApplicable, | ||
); | ||
} | ||
} | ||
} | ||
} | ||
} |
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,16 @@ | ||
// run-rustfix | ||
#![warn(clippy::repeat_once)] | ||
#[allow(unused, clippy::many_single_char_names, clippy::redundant_clone)] | ||
fn main() { | ||
const N: usize = 1; | ||
let s = "str"; | ||
let string = "String".to_string(); | ||
let slice = [1; 5]; | ||
|
||
let a = [1; 5].to_vec(); | ||
let b = slice.to_vec(); | ||
let c = "hello".to_string(); | ||
let d = "hi".to_string(); | ||
let e = s.to_string(); | ||
let f = string.clone(); | ||
} |
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,16 @@ | ||
// run-rustfix | ||
#![warn(clippy::repeat_once)] | ||
#[allow(unused, clippy::many_single_char_names, clippy::redundant_clone)] | ||
fn main() { | ||
const N: usize = 1; | ||
let s = "str"; | ||
let string = "String".to_string(); | ||
let slice = [1; 5]; | ||
|
||
let a = [1; 5].repeat(1); | ||
let b = slice.repeat(1); | ||
let c = "hello".repeat(N); | ||
let d = "hi".repeat(1); | ||
let e = s.repeat(1); | ||
let f = string.repeat(1); | ||
} |
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,40 @@ | ||
error: calling `repeat(1)` on slice | ||
--> $DIR/repeat_once.rs:10:13 | ||
| | ||
LL | let a = [1; 5].repeat(1); | ||
| ^^^^^^^^^^^^^^^^ help: consider using `.to_vec()` instead: `[1; 5].to_vec()` | ||
| | ||
= note: `-D clippy::repeat-once` implied by `-D warnings` | ||
|
||
error: calling `repeat(1)` on slice | ||
--> $DIR/repeat_once.rs:11:13 | ||
| | ||
LL | let b = slice.repeat(1); | ||
| ^^^^^^^^^^^^^^^ help: consider using `.to_vec()` instead: `slice.to_vec()` | ||
|
||
error: calling `repeat(1)` on str | ||
--> $DIR/repeat_once.rs:12:13 | ||
| | ||
LL | let c = "hello".repeat(N); | ||
| ^^^^^^^^^^^^^^^^^ help: consider using `.to_string()` instead: `"hello".to_string()` | ||
|
||
error: calling `repeat(1)` on str | ||
--> $DIR/repeat_once.rs:13:13 | ||
| | ||
LL | let d = "hi".repeat(1); | ||
| ^^^^^^^^^^^^^^ help: consider using `.to_string()` instead: `"hi".to_string()` | ||
|
||
error: calling `repeat(1)` on str | ||
--> $DIR/repeat_once.rs:14:13 | ||
| | ||
LL | let e = s.repeat(1); | ||
| ^^^^^^^^^^^ help: consider using `.to_string()` instead: `s.to_string()` | ||
|
||
error: calling `repeat(1)` on a string literal | ||
--> $DIR/repeat_once.rs:15:13 | ||
| | ||
LL | let f = string.repeat(1); | ||
| ^^^^^^^^^^^^^^^^ help: consider using `.clone()` instead: `string.clone()` | ||
|
||
error: aborting due to 6 previous errors | ||
|