2021-03-17 11:23:37 -05:00
|
|
|
use super::utils::get_hint_if_single_char_arg;
|
2021-03-15 19:55:45 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
2021-03-17 00:26:27 -05:00
|
|
|
use if_chain::if_chain;
|
2021-03-06 02:28:14 -06:00
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use rustc_hir as hir;
|
|
|
|
use rustc_lint::LateContext;
|
2021-03-17 00:26:27 -05:00
|
|
|
use rustc_middle::ty;
|
|
|
|
use rustc_span::symbol::Symbol;
|
2021-03-06 02:28:14 -06:00
|
|
|
|
|
|
|
use super::SINGLE_CHAR_PATTERN;
|
|
|
|
|
|
|
|
/// lint for length-1 `str`s for methods in `PATTERN_METHODS`
|
2021-03-17 00:26:27 -05:00
|
|
|
pub(super) fn check(cx: &LateContext<'_>, _expr: &hir::Expr<'_>, method_name: Symbol, args: &[hir::Expr<'_>]) {
|
|
|
|
for &(method, pos) in &crate::methods::PATTERN_METHODS {
|
|
|
|
if_chain! {
|
|
|
|
if let ty::Ref(_, ty, _) = cx.typeck_results().expr_ty_adjusted(&args[0]).kind();
|
|
|
|
if *ty.kind() == ty::Str;
|
|
|
|
if method_name.as_str() == method && args.len() > pos;
|
|
|
|
let arg = &args[pos];
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
if let Some(hint) = get_hint_if_single_char_arg(cx, arg, &mut applicability);
|
|
|
|
then {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
SINGLE_CHAR_PATTERN,
|
|
|
|
arg.span,
|
|
|
|
"single-character string constant used as pattern",
|
|
|
|
"try using a `char` instead",
|
|
|
|
hint,
|
|
|
|
applicability,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2021-03-06 02:28:14 -06:00
|
|
|
}
|
|
|
|
}
|