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
|
|
|
|
2019-01-09 12:30:47 -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};
|
2018-12-25 16:29:03 -06:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2019-01-30 19:15:29 -06:00
|
|
|
/// **What it does:** Checks for `assert!(true)` and `assert!(false)` calls.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
|
|
|
/// **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)
|
2019-03-05 10:50:33 -06:00
|
|
|
/// // or
|
2019-01-30 19:15:29 -06:00
|
|
|
/// assert!(true)
|
2019-03-05 10:50:33 -06:00
|
|
|
/// // or
|
|
|
|
/// const B: bool = false;
|
2019-01-30 19:15:29 -06:00
|
|
|
/// assert!(B)
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2019-01-09 04:38:38 -06:00
|
|
|
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!()`"
|
2018-12-25 16:29:03 -06:00
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(AssertionsOnConstants => [ASSERTIONS_ON_CONSTANTS]);
|
2018-12-25 16:29:03 -06:00
|
|
|
|
2019-01-09 04:38:38 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for AssertionsOnConstants {
|
2018-12-25 16:29:03 -06:00
|
|
|
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
|
|
|
};
|
2018-12-25 16:29:03 -06: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);
|
2018-12-25 16:29:03 -06:00
|
|
|
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);
|
2018-12-25 16:29:03 -06:00
|
|
|
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!()`"
|
|
|
|
);
|
|
|
|
},
|
|
|
|
_ => (),
|
2018-12-25 16:29:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|