rust-clippy/src/needless_bool.rs

102 lines
3.5 KiB
Rust
Raw Normal View History

//! Checks for needless boolean results of if-else expressions
//!
//! This lint is **warn** by default
use rustc::lint::*;
use rustc_front::hir::*;
use syntax::ast::Lit_::*;
use utils::{span_lint, snippet};
/// **What it does:** This lint checks for expressions of the form `if c { true } else { false }` (or vice versa) and suggest using the condition directly. It is `Warn` by default.
///
/// **Why is this bad?** Redundant code.
///
/// **Known problems:** Maybe false positives: Sometimes, the two branches are painstakingly documented (which we of course do not detect), so they *may* have some value. Even then, the documentation can be rewritten to match the shorter code.
///
/// **Example:** `if x { false } else { true }`
declare_lint! {
pub NEEDLESS_BOOL,
Warn,
"if-statements with plain booleans in the then- and else-clause, e.g. \
`if p { true } else { false }`"
}
#[derive(Copy,Clone)]
pub struct NeedlessBool;
impl LintPass for NeedlessBool {
fn get_lints(&self) -> LintArray {
lint_array!(NEEDLESS_BOOL)
}
}
impl LateLintPass for NeedlessBool {
fn check_expr(&mut self, cx: &LateContext, e: &Expr) {
if let ExprIf(ref pred, ref then_block, Some(ref else_expr)) = e.node {
match (fetch_bool_block(then_block), fetch_bool_expr(else_expr)) {
(Some(true), Some(true)) => {
2016-01-04 04:26:12 +00:00
span_lint(cx,
NEEDLESS_BOOL,
e.span,
2015-11-17 05:22:57 +00:00
"this if-then-else expression will always return true");
}
(Some(false), Some(false)) => {
2016-01-04 04:26:12 +00:00
span_lint(cx,
NEEDLESS_BOOL,
e.span,
2015-11-17 05:22:57 +00:00
"this if-then-else expression will always return false");
}
(Some(true), Some(false)) => {
let pred_snip = snippet(cx, pred.span, "..");
2016-01-04 04:26:12 +00:00
let hint = if pred_snip == ".." {
"its predicate".into()
} else {
format!("`{}`", pred_snip)
};
2016-01-04 04:26:12 +00:00
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, "..");
2016-01-04 04:26:12 +00:00
let hint = if pred_snip == ".." {
"`!` and its predicate".into()
} else {
format!("`!{}`", pred_snip)
};
2016-01-04 04:26:12 +00:00
span_lint(cx,
NEEDLESS_BOOL,
e.span,
&format!("you can reduce this if-then-else expression to just {}", hint));
}
2016-01-04 04:26:12 +00:00
_ => (),
}
}
}
}
fn fetch_bool_block(block: &Block) -> Option<bool> {
if block.stmts.is_empty() {
block.expr.as_ref().and_then(|e| fetch_bool_expr(e))
2016-01-04 04:26:12 +00:00
} else {
None
}
}
fn fetch_bool_expr(expr: &Expr) -> Option<bool> {
2015-08-21 18:44:48 +00:00
match expr.node {
ExprBlock(ref block) => fetch_bool_block(block),
2016-01-04 04:26:12 +00:00
ExprLit(ref lit_ptr) => {
if let LitBool(value) = lit_ptr.node {
Some(value)
} else {
None
}
}
_ => None,
}
}