rust/clippy_lints/src/assertions_on_constants.rs

70 lines
2.5 KiB
Rust
Raw Normal View History

2019-01-30 19:15:29 -06:00
use rustc::hir::{Expr, ExprKind};
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
2019-04-08 15:43:55 -05:00
use rustc::{declare_lint_pass, declare_tool_lint};
2019-01-30 19:15:29 -06:00
use crate::consts::{constant, Constant};
2019-08-17 13:46:44 -05:00
use crate::utils::{in_macro_or_desugar, is_direct_expn_of, is_expn_of, span_help_and_lint};
declare_clippy_lint! {
2019-01-30 19:15:29 -06:00
/// **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
/// panic!() or unreachable!()
///
/// **Known problems:** None
///
/// **Example:**
2019-03-10 17:01:56 -05:00
/// ```rust,ignore
2019-01-30 19:15:29 -06:00
/// assert!(false)
/// // or
2019-01-30 19:15:29 -06:00
/// assert!(true)
/// // or
/// const B: bool = false;
2019-01-30 19:15:29 -06:00
/// assert!(B)
/// ```
pub ASSERTIONS_ON_CONSTANTS,
style,
2019-03-10 12:19:47 -05: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 15:43:55 -05:00
declare_lint_pass!(AssertionsOnConstants => [ASSERTIONS_ON_CONSTANTS]);
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for AssertionsOnConstants {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
2019-08-17 13:46:44 -05:00
let lint_assert_cb = |is_debug_assert: bool| {
2019-08-17 13:46:44 -05:00
if let ExprKind::Unary(_, ref lit) = e.node {
2019-08-17 13:46:44 -05:00
if let Some((Constant::Bool(is_true), _)) = constant(cx, cx.tables, lit) {
if is_true {
span_help_and_lint(
cx,
ASSERTIONS_ON_CONSTANTS,
e.span,
"`assert!(true)` will be optimized out by the compiler",
"remove it",
);
} else if !is_debug_assert {
span_help_and_lint(
cx,
ASSERTIONS_ON_CONSTANTS,
e.span,
"`assert!(false)` should probably be replaced",
"use `panic!()` or `unreachable!()`",
);
2019-08-17 13:46:44 -05:00
}
}
}
2019-08-17 13:46:44 -05:00
};
if let Some(debug_assert_span) = is_expn_of(e.span, "debug_assert") {
if in_macro_or_desugar(debug_assert_span) {
return;
}
lint_assert_cb(true);
} else if let Some(assert_span) = is_direct_expn_of(e.span, "assert") {
if in_macro_or_desugar(assert_span) {
return;
}
lint_assert_cb(false);
}
}
}