rust/clippy_lints/src/assertions_on_constants.rs

75 lines
2.8 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-04-18 06:37:20 -05:00
use syntax_pos::Span;
2019-01-30 19:15:29 -06:00
use crate::consts::{constant, Constant};
2019-05-14 03:06:21 -05:00
use crate::utils::{in_macro_or_desugar, 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;
2019-05-11 22:40:05 -05:00
let debug_assert_not_in_macro_or_desugar = |span: Span| {
2019-04-18 06:37:20 -05:00
is_debug_assert = true;
// Check that `debug_assert!` itself is not inside a macro
2019-05-11 22:40:05 -05:00
!in_macro_or_desugar(span)
2019-04-18 06:37:20 -05:00
};
if_chain! {
2019-05-17 16:53:54 -05:00
if let Some(assert_span) = is_direct_expn_of(e.span, "assert");
2019-05-11 22:40:05 -05:00
if !in_macro_or_desugar(assert_span)
2019-05-17 16:53:54 -05:00
|| is_direct_expn_of(assert_span, "debug_assert")
2019-05-11 22:40:05 -05:00
.map_or(false, debug_assert_not_in_macro_or_desugar);
if let ExprKind::Unary(_, ref lit) = e.node;
2019-04-18 05:04:46 -05:00
if let Some(bool_const) = constant(cx, cx.tables, lit);
then {
2019-04-18 05:04:46 -05:00
match bool_const.0 {
Constant::Bool(true) => {
span_help_and_lint(
cx,
ASSERTIONS_ON_CONSTANTS,
e.span,
"`assert!(true)` will be optimized out by the compiler",
"remove it"
);
},
Constant::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!()`"
);
},
_ => (),
}
}
}
}
}