rust/clippy_lints/src/eq_op.rs

67 lines
1.8 KiB
Rust
Raw Normal View History

use rustc::hir::*;
use rustc::lint::*;
2016-02-06 13:13:25 -06:00
use utils::{SpanlessEq, span_lint};
2016-02-03 13:42:05 -06:00
/// **What it does:** This lint checks for equal operands to comparison, logical and bitwise,
/// difference and division binary operators (`==`, `>`, etc., `&&`, `||`, `&`, `|`, `^`, `-` and
/// `/`).
///
2016-02-03 13:42:05 -06:00
/// **Why is this bad?** This is usually just a typo or a copy and paste error.
///
2016-07-15 17:25:44 -05:00
/// **Known problems:** False negatives: We had some false positives regarding calls (notably
/// [racer](https://github.com/phildawes/racer) had one instance of `x.pop() && x.pop()`), so we
/// removed matching any function or method calls. We may introduce a whitelist of known pure
/// functions in the future.
///
2016-07-15 17:25:44 -05:00
/// **Example:**
/// ```rust
/// x + 1 == x + 1
/// ```
declare_lint! {
pub EQ_OP,
Warn,
"equal operands on both sides of a comparison or bitwise combination (e.g. `x == x`)"
}
#[derive(Copy,Clone)]
pub struct EqOp;
impl LintPass for EqOp {
fn get_lints(&self) -> LintArray {
lint_array!(EQ_OP)
}
}
impl LateLintPass for EqOp {
fn check_expr(&mut self, cx: &LateContext, e: &Expr) {
if let ExprBinary(ref op, ref left, ref right) = e.node {
2016-02-06 13:13:25 -06:00
if is_valid_operator(op) && SpanlessEq::new(cx).ignore_fn().eq_expr(left, right) {
2016-01-03 22:26:12 -06:00
span_lint(cx,
EQ_OP,
e.span,
&format!("equal expressions as operands to `{}`", op.node.as_str()));
}
}
}
}
2016-02-03 13:42:05 -06:00
fn is_valid_operator(op: &BinOp) -> bool {
match op.node {
2016-02-03 13:42:05 -06:00
BiSub |
BiDiv |
2016-01-03 22:26:12 -06:00
BiEq |
BiLt |
BiLe |
BiGt |
BiGe |
BiNe |
BiAnd |
BiOr |
BiBitXor |
BiBitAnd |
BiBitOr => true,
_ => false,
}
}