rust/clippy_lints/src/assertions_on_constants.rs

84 lines
2.9 KiB
Rust
Raw Normal View History

use clippy_utils::consts::{constant_with_source, Constant, ConstantSource};
use clippy_utils::diagnostics::span_lint_and_help;
use clippy_utils::macros::{find_assert_args, root_macro_call_first_node, PanicExpn};
use rustc_hir::{Expr, Item, ItemKind, Node};
2020-01-12 15:08:41 +09:00
use rustc_lint::{LateContext, LateLintPass};
use rustc_session::declare_lint_pass;
use rustc_span::sym;
declare_clippy_lint! {
/// ### What it does
/// Checks for `assert!(true)` and `assert!(false)` calls.
///
/// ### Why is this bad?
/// Will be optimized out by the compiler or should probably be replaced by a
2020-03-18 02:50:39 +01:00
/// `panic!()` or `unreachable!()`
///
/// ### Example
2019-03-10 23:01:56 +01:00
/// ```rust,ignore
2019-01-31 01:15:29 +00:00
/// assert!(false)
/// assert!(true)
/// const B: bool = false;
2019-01-31 01:15:29 +00:00
/// assert!(B)
/// ```
#[clippy::version = "1.34.0"]
pub ASSERTIONS_ON_CONSTANTS,
style,
2019-03-10 17:19:47 +00:00
"`assert!(true)` / `assert!(false)` will be optimized out by the compiler, and should probably be replaced by a `panic!()` or `unreachable!()`"
}
2019-04-08 13:43:55 -07:00
declare_lint_pass!(AssertionsOnConstants => [ASSERTIONS_ON_CONSTANTS]);
impl<'tcx> LateLintPass<'tcx> for AssertionsOnConstants {
fn check_expr(&mut self, cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) {
let Some(macro_call) = root_macro_call_first_node(cx, e) else {
return;
};
let is_debug = match cx.tcx.get_diagnostic_name(macro_call.def_id) {
Some(sym::debug_assert_macro) => true,
Some(sym::assert_macro) => false,
_ => return,
2019-10-07 22:08:00 +02:00
};
let Some((condition, panic_expn)) = find_assert_args(cx, e, macro_call.expn) else {
return;
};
let Some((Constant::Bool(val), source)) = constant_with_source(cx, cx.typeck_results(), condition) else {
return;
};
if let ConstantSource::Constant = source
&& let Node::Item(Item {
kind: ItemKind::Const(..),
..
}) = cx.tcx.parent_hir_node(e.hir_id)
{
return;
}
if val {
span_lint_and_help(
2019-10-07 22:08:00 +02:00
cx,
ASSERTIONS_ON_CONSTANTS,
macro_call.span,
2024-03-23 06:52:11 +01:00
format!(
"`{}!(true)` will be optimized out by the compiler",
cx.tcx.item_name(macro_call.def_id)
),
None,
"remove it",
2019-10-07 22:08:00 +02:00
);
} else if !is_debug {
let (assert_arg, panic_arg) = match panic_expn {
PanicExpn::Empty => ("", ""),
_ => (", ..", ".."),
};
span_lint_and_help(
2019-10-07 22:08:00 +02:00
cx,
ASSERTIONS_ON_CONSTANTS,
macro_call.span,
2024-03-23 06:52:11 +01:00
format!("`assert!(false{assert_arg})` should probably be replaced"),
None,
2024-03-23 06:52:11 +01:00
format!("use `panic!({panic_arg})` or `unreachable!({panic_arg})`"),
);
}
}
2019-10-06 20:10:30 +02:00
}