move single_char_add_str to its own module
This commit is contained in:
parent
4843084946
commit
3d9b45df0f
15
clippy_lints/src/methods/single_char_add_str.rs
Normal file
15
clippy_lints/src/methods/single_char_add_str.rs
Normal file
@ -0,0 +1,15 @@
|
||||
use crate::methods::{single_char_insert_string, single_char_push_string};
|
||||
use crate::utils::match_def_path;
|
||||
use crate::utils::paths;
|
||||
use rustc_hir as hir;
|
||||
use rustc_lint::LateContext;
|
||||
|
||||
pub(super) fn check(cx: &LateContext<'_>, expr: &hir::Expr<'_>, args: &[hir::Expr<'_>]) {
|
||||
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) {
|
||||
single_char_push_string::check(cx, expr, args);
|
||||
} else if match_def_path(cx, fn_def_id, &paths::INSERT_STR) {
|
||||
single_char_insert_string::check(cx, expr, args);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user