2018-12-25 16:29:03 -06:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
use crate::rustc::hir::{Expr, ExprKind};
|
|
|
|
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
|
|
|
use crate::syntax::ast::LitKind;
|
2019-01-09 04:38:38 -06:00
|
|
|
use crate::utils::{is_direct_expn_of, span_lint, span_lint_and_sugg};
|
|
|
|
use rustc_errors::Applicability;
|
2018-12-25 16:29:03 -06:00
|
|
|
use if_chain::if_chain;
|
|
|
|
|
2019-01-09 04:38:38 -06:00
|
|
|
/// **What it does:** Check explicit call assert!(true/false)
|
2018-12-25 16:29:03 -06:00
|
|
|
///
|
2019-01-09 04:38:38 -06:00
|
|
|
/// **Why is this bad?** Will be optimized out by the compiler or should probably be replaced by a panic!() or unreachable!()
|
2018-12-25 16:29:03 -06:00
|
|
|
///
|
|
|
|
/// **Known problems:** None
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// assert!(false)
|
2019-01-09 04:38:38 -06:00
|
|
|
/// // or
|
|
|
|
/// assert!(true)
|
|
|
|
/// // or
|
|
|
|
/// const B: bool = false;
|
|
|
|
/// assert!(B)
|
2018-12-25 16:29:03 -06:00
|
|
|
/// ```
|
|
|
|
declare_clippy_lint! {
|
2019-01-09 04:38:38 -06:00
|
|
|
pub ASSERTIONS_ON_CONSTANTS,
|
|
|
|
style,
|
|
|
|
"assert!(true/false) will be optimized out by the compiler/should probably be replaced by a panic!() or unreachable!()"
|
2018-12-25 16:29:03 -06:00
|
|
|
}
|
|
|
|
|
2019-01-09 04:38:38 -06:00
|
|
|
pub struct AssertionsOnConstants;
|
2018-12-25 16:29:03 -06:00
|
|
|
|
2019-01-09 04:38:38 -06:00
|
|
|
impl LintPass for AssertionsOnConstants {
|
2018-12-25 16:29:03 -06:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2019-01-09 04:38:38 -06:00
|
|
|
lint_array![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) {
|
|
|
|
if_chain! {
|
|
|
|
if is_direct_expn_of(e.span, "assert").is_some();
|
|
|
|
if let ExprKind::Unary(_, ref lit) = e.node;
|
|
|
|
if let ExprKind::Lit(ref inner) = lit.node;
|
|
|
|
then {
|
|
|
|
match inner.node {
|
|
|
|
LitKind::Bool(true) => {
|
2019-01-09 04:38:38 -06:00
|
|
|
span_lint(cx, ASSERTIONS_ON_CONSTANTS, e.span,
|
2018-12-25 16:29:03 -06:00
|
|
|
"assert!(true) will be optimized out by the compiler");
|
|
|
|
},
|
|
|
|
LitKind::Bool(false) => {
|
2019-01-09 04:38:38 -06:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
ASSERTIONS_ON_CONSTANTS,
|
|
|
|
e.span,
|
|
|
|
"assert!(false) should probably be replaced",
|
|
|
|
"try",
|
|
|
|
"panic!()".to_string(),
|
|
|
|
Applicability::MachineApplicable);
|
2018-12-25 16:29:03 -06:00
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|