2015-05-01 17:35:49 -05:00
|
|
|
//! Checks for needless boolean results of if-else expressions
|
|
|
|
//!
|
2015-05-04 00:17:15 -05:00
|
|
|
//! This lint is **warn** by default
|
2015-05-01 17:35:49 -05:00
|
|
|
|
|
|
|
use rustc::lint::*;
|
2015-09-03 09:42:17 -05:00
|
|
|
use rustc_front::hir::*;
|
2015-08-16 01:54:43 -05:00
|
|
|
|
2015-09-16 19:01:41 -05:00
|
|
|
use syntax::ast::Lit_::*;
|
|
|
|
|
2015-08-25 07:41:35 -05:00
|
|
|
use utils::{span_lint, snippet};
|
2015-05-01 17:35:49 -05:00
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
pub NEEDLESS_BOOL,
|
|
|
|
Warn,
|
2015-08-13 03:32:35 -05:00
|
|
|
"if-statements with plain booleans in the then- and else-clause, e.g. \
|
|
|
|
`if p { true } else { false }`"
|
2015-05-01 17:35:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct NeedlessBool;
|
|
|
|
|
|
|
|
impl LintPass for NeedlessBool {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEEDLESS_BOOL)
|
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
impl LateLintPass for NeedlessBool {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext, e: &Expr) {
|
2015-08-13 02:44:03 -05:00
|
|
|
if let ExprIf(ref pred, ref then_block, Some(ref else_expr)) = e.node {
|
2015-08-11 13:22:20 -05:00
|
|
|
match (fetch_bool_block(then_block), fetch_bool_expr(else_expr)) {
|
2015-08-13 02:44:03 -05:00
|
|
|
(Some(true), Some(true)) => {
|
2015-08-11 13:22:20 -05:00
|
|
|
span_lint(cx, NEEDLESS_BOOL, e.span,
|
2015-08-13 02:44:03 -05:00
|
|
|
"this if-then-else expression will always return true"); },
|
|
|
|
(Some(false), Some(false)) => {
|
2015-08-11 13:22:20 -05:00
|
|
|
span_lint(cx, NEEDLESS_BOOL, e.span,
|
2015-08-13 02:44:03 -05:00
|
|
|
"this if-then-else expression will always return false"); },
|
|
|
|
(Some(true), Some(false)) => {
|
|
|
|
let pred_snip = snippet(cx, pred.span, "..");
|
|
|
|
let hint = if pred_snip == ".." { "its predicate".into() } else {
|
|
|
|
format!("`{}`", pred_snip)
|
|
|
|
};
|
|
|
|
span_lint(cx, NEEDLESS_BOOL, e.span, &format!(
|
|
|
|
"you can reduce this if-then-else expression to just {}", hint));
|
|
|
|
},
|
|
|
|
(Some(false), Some(true)) => {
|
|
|
|
let pred_snip = snippet(cx, pred.span, "..");
|
|
|
|
let hint = if pred_snip == ".." { "`!` and its predicate".into() } else {
|
|
|
|
format!("`!{}`", pred_snip)
|
|
|
|
};
|
|
|
|
span_lint(cx, NEEDLESS_BOOL, e.span, &format!(
|
|
|
|
"you can reduce this if-then-else expression to just {}", hint));
|
|
|
|
},
|
2015-08-11 13:22:20 -05:00
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
2015-05-01 17:35:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fetch_bool_block(block: &Block) -> Option<bool> {
|
2015-08-11 13:22:20 -05:00
|
|
|
if block.stmts.is_empty() {
|
2015-08-25 07:41:35 -05:00
|
|
|
block.expr.as_ref().and_then(|e| fetch_bool_expr(e))
|
2015-08-13 02:44:03 -05:00
|
|
|
} else { None }
|
2015-05-01 17:35:49 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2015-05-01 17:35:49 -05:00
|
|
|
fn fetch_bool_expr(expr: &Expr) -> Option<bool> {
|
2015-08-21 13:44:48 -05:00
|
|
|
match expr.node {
|
|
|
|
ExprBlock(ref block) => fetch_bool_block(block),
|
|
|
|
ExprLit(ref lit_ptr) => if let LitBool(value) = lit_ptr.node {
|
2015-08-13 02:44:03 -05:00
|
|
|
Some(value) } else { None },
|
|
|
|
_ => None
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-05-01 17:35:49 -05:00
|
|
|
}
|