2021-03-06 00:39:28 -06:00
|
|
|
use crate::methods::get_hint_if_single_char_arg;
|
2021-03-14 18:17:44 -05:00
|
|
|
use crate::utils::span_lint_and_sugg;
|
|
|
|
use clippy_utils::source::snippet_with_applicability;
|
2021-03-06 00:39:28 -06:00
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use rustc_hir as hir;
|
|
|
|
use rustc_lint::LateContext;
|
|
|
|
|
|
|
|
use super::SINGLE_CHAR_ADD_STR;
|
|
|
|
|
|
|
|
/// lint for length-1 `str`s as argument for `push_str`
|
|
|
|
pub(super) fn check(cx: &LateContext<'_>, expr: &hir::Expr<'_>, args: &[hir::Expr<'_>]) {
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
if let Some(extension_string) = get_hint_if_single_char_arg(cx, &args[1], &mut applicability) {
|
|
|
|
let base_string_snippet =
|
|
|
|
snippet_with_applicability(cx, args[0].span.source_callsite(), "..", &mut applicability);
|
|
|
|
let sugg = format!("{}.push({})", base_string_snippet, extension_string);
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
SINGLE_CHAR_ADD_STR,
|
|
|
|
expr.span,
|
|
|
|
"calling `push_str()` using a single-character string literal",
|
|
|
|
"consider using `push` with a character literal",
|
|
|
|
sugg,
|
|
|
|
applicability,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|