rust/clippy_lints/src/assertions_on_constants.rs

81 lines
3.3 KiB
Rust
Raw Normal View History

2019-01-30 19:15:29 -06:00
use if_chain::if_chain;
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};
use crate::syntax::ast::LitKind;
use crate::utils::{in_macro, is_direct_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-04-18 04:47:39 -05:00
let mut is_debug_assert = false;
if_chain! {
if let Some(assert_span) = is_direct_expn_of(e.span, "assert");
if !in_macro(assert_span)
2019-04-18 04:47:39 -05:00
|| is_direct_expn_of(assert_span, "debug_assert").map_or(false, |span| {
is_debug_assert = true;
// Check that `debug_assert!` itself is not inside a macro
!in_macro(span)
});
if let ExprKind::Unary(_, ref lit) = e.node;
then {
if let ExprKind::Lit(ref inner) = lit.node {
match inner.node {
LitKind::Bool(true) => {
span_help_and_lint(cx, ASSERTIONS_ON_CONSTANTS, e.span,
"assert!(true) will be optimized out by the compiler",
"remove it");
},
2019-04-18 04:47:39 -05:00
LitKind::Bool(false) if !is_debug_assert => {
span_help_and_lint(
cx, ASSERTIONS_ON_CONSTANTS, e.span,
"assert!(false) should probably be replaced",
"use panic!() or unreachable!()");
},
_ => (),
}
} else if let Some(bool_const) = constant(cx, cx.tables, lit) {
match bool_const.0 {
Constant::Bool(true) => {
span_help_and_lint(cx, ASSERTIONS_ON_CONSTANTS, e.span,
"assert!(const: true) will be optimized out by the compiler",
"remove it");
},
2019-04-18 04:47:39 -05:00
Constant::Bool(false) if !is_debug_assert => {
span_help_and_lint(cx, ASSERTIONS_ON_CONSTANTS, e.span,
"assert!(const: false) should probably be replaced",
"use panic!() or unreachable!()");
},
_ => (),
}
}
}
}
}
}