69 lines
1.8 KiB
Rust
69 lines
1.8 KiB
Rust
|
use rustc::lint::*;
|
||
|
use rustc_front::hir::*;
|
||
|
use utils::{get_parent_expr, is_exp_equal, span_lint};
|
||
|
|
||
|
/// **What it does:** This lint checks for consecutive `ifs` with the same condition. This lint is
|
||
|
/// `Warn` by default.
|
||
|
///
|
||
|
/// **Why is this bad?** This is probably a copy & paste error.
|
||
|
///
|
||
|
/// **Known problems:** Hopefully none.
|
||
|
///
|
||
|
/// **Example:** `if a == b { .. } else if a == b { .. }`
|
||
|
declare_lint! {
|
||
|
pub IFS_SAME_COND,
|
||
|
Warn,
|
||
|
"consecutive `ifs` with the same condition"
|
||
|
}
|
||
|
|
||
|
#[derive(Copy, Clone, Debug)]
|
||
|
pub struct CopyAndPaste;
|
||
|
|
||
|
impl LintPass for CopyAndPaste {
|
||
|
fn get_lints(&self) -> LintArray {
|
||
|
lint_array![
|
||
|
IFS_SAME_COND
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl LateLintPass for CopyAndPaste {
|
||
|
fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
|
||
|
// skip ifs directly in else, it will be checked in the parent if
|
||
|
if let Some(&Expr{node: ExprIf(_, _, Some(ref else_expr)), ..}) = get_parent_expr(cx, expr) {
|
||
|
if else_expr.id == expr.id {
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
let conds = condition_sequence(expr);
|
||
|
|
||
|
for (n, i) in conds.iter().enumerate() {
|
||
|
for j in conds.iter().skip(n+1) {
|
||
|
if is_exp_equal(cx, i, j) {
|
||
|
span_lint(cx, IFS_SAME_COND, j.span, "this if as the same condition as a previous if");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Return the list of conditions expression in a sequence of `if/else`.
|
||
|
/// Eg. would return `[a, b]` for the expression `if a {..} else if b {..}`.
|
||
|
fn condition_sequence(mut expr: &Expr) -> Vec<&Expr> {
|
||
|
let mut result = vec![];
|
||
|
|
||
|
while let ExprIf(ref cond, _, ref else_expr) = expr.node {
|
||
|
result.push(&**cond);
|
||
|
|
||
|
if let Some(ref else_expr) = *else_expr {
|
||
|
expr = else_expr;
|
||
|
}
|
||
|
else {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
result
|
||
|
}
|