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
|
|
|
|
2019-01-09 12:30:47 -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};
|
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-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
|
|
|
}
|
2018-12-25 16:29:03 -06: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);
|
2018-12-25 16:29:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|