mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-21 02:23:19 +00:00
43 lines
1.4 KiB
Rust
43 lines
1.4 KiB
Rust
use clippy_utils::diagnostics::span_lint_and_sugg;
|
|
use clippy_utils::method_chain_args;
|
|
use clippy_utils::source::snippet_with_applicability;
|
|
use if_chain::if_chain;
|
|
use rustc_ast::ast;
|
|
use rustc_errors::Applicability;
|
|
use rustc_hir as hir;
|
|
use rustc_lint::LateContext;
|
|
use rustc_lint::Lint;
|
|
|
|
/// Wrapper fn for `CHARS_NEXT_CMP` and `CHARS_LAST_CMP` lints with `unwrap()`.
|
|
pub(super) fn check<'tcx>(
|
|
cx: &LateContext<'tcx>,
|
|
info: &crate::methods::BinaryExprInfo<'_>,
|
|
chain_methods: &[&str],
|
|
lint: &'static Lint,
|
|
suggest: &str,
|
|
) -> bool {
|
|
if_chain! {
|
|
if let Some(args) = method_chain_args(info.chain, chain_methods);
|
|
if let hir::ExprKind::Lit(ref lit) = info.other.kind;
|
|
if let ast::LitKind::Char(c) = lit.node;
|
|
then {
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
span_lint_and_sugg(
|
|
cx,
|
|
lint,
|
|
info.expr.span,
|
|
&format!("you should use the `{suggest}` method"),
|
|
"like this",
|
|
format!("{}{}.{suggest}('{}')",
|
|
if info.eq { "" } else { "!" },
|
|
snippet_with_applicability(cx, args[0].0.span, "..", &mut applicability),
|
|
c.escape_default()),
|
|
applicability,
|
|
);
|
|
|
|
true
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
}
|