[Clippy] Swap single_char_add_str
/format_push_string
to use diagnostic items instead of paths
This commit is contained in:
parent
959f7a2bbb
commit
f66915e8f8
@ -1,6 +1,6 @@
|
|||||||
use clippy_utils::diagnostics::span_lint_and_then;
|
use clippy_utils::diagnostics::span_lint_and_then;
|
||||||
use clippy_utils::ty::is_type_lang_item;
|
use clippy_utils::ty::is_type_lang_item;
|
||||||
use clippy_utils::{higher, match_def_path, paths};
|
use clippy_utils::higher;
|
||||||
use rustc_hir::{BinOpKind, Expr, ExprKind, LangItem, MatchSource};
|
use rustc_hir::{BinOpKind, Expr, ExprKind, LangItem, MatchSource};
|
||||||
use rustc_lint::{LateContext, LateLintPass};
|
use rustc_lint::{LateContext, LateLintPass};
|
||||||
use rustc_session::declare_lint_pass;
|
use rustc_session::declare_lint_pass;
|
||||||
@ -70,7 +70,7 @@ fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
|||||||
let arg = match expr.kind {
|
let arg = match expr.kind {
|
||||||
ExprKind::MethodCall(_, _, [arg], _) => {
|
ExprKind::MethodCall(_, _, [arg], _) => {
|
||||||
if let Some(fn_def_id) = cx.typeck_results().type_dependent_def_id(expr.hir_id)
|
if let Some(fn_def_id) = cx.typeck_results().type_dependent_def_id(expr.hir_id)
|
||||||
&& match_def_path(cx, fn_def_id, &paths::PUSH_STR)
|
&& cx.tcx.is_diagnostic_item(sym::string_push_str, fn_def_id)
|
||||||
{
|
{
|
||||||
arg
|
arg
|
||||||
} else {
|
} else {
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
use crate::methods::{single_char_insert_string, single_char_push_string};
|
use crate::methods::{single_char_insert_string, single_char_push_string};
|
||||||
use clippy_utils::{match_def_path, paths};
|
|
||||||
use rustc_hir as hir;
|
use rustc_hir as hir;
|
||||||
use rustc_lint::LateContext;
|
use rustc_lint::LateContext;
|
||||||
|
use rustc_span::sym;
|
||||||
|
|
||||||
pub(super) fn check(cx: &LateContext<'_>, expr: &hir::Expr<'_>, receiver: &hir::Expr<'_>, args: &[hir::Expr<'_>]) {
|
pub(super) fn check(cx: &LateContext<'_>, expr: &hir::Expr<'_>, receiver: &hir::Expr<'_>, args: &[hir::Expr<'_>]) {
|
||||||
if let Some(fn_def_id) = cx.typeck_results().type_dependent_def_id(expr.hir_id) {
|
if let Some(fn_def_id) = cx.typeck_results().type_dependent_def_id(expr.hir_id) {
|
||||||
if match_def_path(cx, fn_def_id, &paths::PUSH_STR) {
|
if cx.tcx.is_diagnostic_item(sym::string_push_str, fn_def_id) {
|
||||||
single_char_push_string::check(cx, expr, receiver, args);
|
single_char_push_string::check(cx, expr, receiver, args);
|
||||||
} else if match_def_path(cx, fn_def_id, &paths::INSERT_STR) {
|
} else if cx.tcx.is_diagnostic_item(sym::string_insert_str, fn_def_id) {
|
||||||
single_char_insert_string::check(cx, expr, receiver, args);
|
single_char_insert_string::check(cx, expr, receiver, args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,6 @@
|
|||||||
pub const HASHSET_DRAIN: [&str; 5] = ["std", "collections", "hash", "set", "Drain"];
|
pub const HASHSET_DRAIN: [&str; 5] = ["std", "collections", "hash", "set", "Drain"];
|
||||||
pub const IDENT: [&str; 3] = ["rustc_span", "symbol", "Ident"];
|
pub const IDENT: [&str; 3] = ["rustc_span", "symbol", "Ident"];
|
||||||
pub const IDENT_AS_STR: [&str; 4] = ["rustc_span", "symbol", "Ident", "as_str"];
|
pub const IDENT_AS_STR: [&str; 4] = ["rustc_span", "symbol", "Ident", "as_str"];
|
||||||
pub const INSERT_STR: [&str; 4] = ["alloc", "string", "String", "insert_str"];
|
|
||||||
pub const ITERTOOLS_NEXT_TUPLE: [&str; 3] = ["itertools", "Itertools", "next_tuple"];
|
pub const ITERTOOLS_NEXT_TUPLE: [&str; 3] = ["itertools", "Itertools", "next_tuple"];
|
||||||
pub const KW_MODULE: [&str; 3] = ["rustc_span", "symbol", "kw"];
|
pub const KW_MODULE: [&str; 3] = ["rustc_span", "symbol", "kw"];
|
||||||
pub const LATE_CONTEXT: [&str; 2] = ["rustc_lint", "LateContext"];
|
pub const LATE_CONTEXT: [&str; 2] = ["rustc_lint", "LateContext"];
|
||||||
@ -42,7 +41,6 @@
|
|||||||
pub const PARKING_LOT_RWLOCK_WRITE_GUARD: [&str; 3] = ["lock_api", "rwlock", "RwLockWriteGuard"];
|
pub const PARKING_LOT_RWLOCK_WRITE_GUARD: [&str; 3] = ["lock_api", "rwlock", "RwLockWriteGuard"];
|
||||||
#[cfg_attr(not(unix), allow(clippy::invalid_paths))]
|
#[cfg_attr(not(unix), allow(clippy::invalid_paths))]
|
||||||
pub const PERMISSIONS_FROM_MODE: [&str; 6] = ["std", "os", "unix", "fs", "PermissionsExt", "from_mode"];
|
pub const PERMISSIONS_FROM_MODE: [&str; 6] = ["std", "os", "unix", "fs", "PermissionsExt", "from_mode"];
|
||||||
pub const PUSH_STR: [&str; 4] = ["alloc", "string", "String", "push_str"];
|
|
||||||
pub const REGEX_BUILDER_NEW: [&str; 3] = ["regex", "RegexBuilder", "new"];
|
pub const REGEX_BUILDER_NEW: [&str; 3] = ["regex", "RegexBuilder", "new"];
|
||||||
pub const REGEX_BYTES_BUILDER_NEW: [&str; 4] = ["regex", "bytes", "RegexBuilder", "new"];
|
pub const REGEX_BYTES_BUILDER_NEW: [&str; 4] = ["regex", "bytes", "RegexBuilder", "new"];
|
||||||
pub const REGEX_BYTES_NEW: [&str; 4] = ["regex", "bytes", "Regex", "new"];
|
pub const REGEX_BYTES_NEW: [&str; 4] = ["regex", "bytes", "Regex", "new"];
|
||||||
|
Loading…
Reference in New Issue
Block a user