2015-08-30 10:32:35 -05:00
|
|
|
use rustc::lint::*;
|
2015-09-18 21:53:04 -05:00
|
|
|
use syntax::ast::*;
|
2016-02-24 10:38:57 -06:00
|
|
|
use syntax::codemap::Spanned;
|
2017-06-21 13:04:04 -05:00
|
|
|
use utils::{span_lint_and_sugg, snippet};
|
2015-08-30 10:32:35 -05:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for operations where precedence may be unclear
|
|
|
|
/// and suggests to add parentheses. Currently it catches the following:
|
2015-12-10 18:22:27 -06:00
|
|
|
/// * mixed usage of arithmetic and bit shifting/combining operators without parentheses
|
2016-07-15 17:25:44 -05:00
|
|
|
/// * a "negative" numeric literal (which is really a unary `-` followed by a numeric literal)
|
|
|
|
/// followed by a method call
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** Not everyone knows the precedence of those operators by
|
|
|
|
/// heart, so expressions like these may trip others trying to reason about the
|
|
|
|
/// code.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Example:**
|
2015-12-10 18:22:27 -06:00
|
|
|
/// * `1 << 2 + 3` equals 32, while `(1 << 2) + 3` equals 7
|
|
|
|
/// * `-1i32.abs()` equals -1, while `(-1i32).abs()` equals 1
|
2016-02-05 17:13:29 -06:00
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub PRECEDENCE,
|
|
|
|
Warn,
|
|
|
|
"operations where precedence may be unclear"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
2015-08-30 10:32:35 -05:00
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct Precedence;
|
|
|
|
|
|
|
|
impl LintPass for Precedence {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(PRECEDENCE)
|
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-30 10:32:35 -05:00
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
impl EarlyLintPass for Precedence {
|
|
|
|
fn check_expr(&mut self, cx: &EarlyContext, expr: &Expr) {
|
2016-04-14 13:14:03 -05:00
|
|
|
if let ExprKind::Binary(Spanned { node: op, .. }, ref left, ref right) = expr.node {
|
2017-06-29 09:07:43 -05:00
|
|
|
let span_sugg = |expr: &Expr, sugg| {
|
|
|
|
span_lint_and_sugg(cx,
|
|
|
|
PRECEDENCE,
|
|
|
|
expr.span,
|
|
|
|
"operator precedence can trip the unwary",
|
|
|
|
"consider parenthesizing your expression",
|
|
|
|
sugg);
|
|
|
|
};
|
2017-01-22 07:51:13 -06:00
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
if !is_bit_op(op) {
|
|
|
|
return;
|
|
|
|
}
|
2015-10-13 06:48:48 -05:00
|
|
|
match (is_arith_expr(left), is_arith_expr(right)) {
|
2015-12-31 14:39:03 -06:00
|
|
|
(true, true) => {
|
2017-01-22 07:51:13 -06:00
|
|
|
let sugg = format!("({}) {} ({})",
|
2016-01-03 22:26:12 -06:00
|
|
|
snippet(cx, left.span, ".."),
|
|
|
|
op.to_string(),
|
2017-01-22 07:51:13 -06:00
|
|
|
snippet(cx, right.span, ".."));
|
|
|
|
span_sugg(expr, sugg);
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2015-12-31 14:39:03 -06:00
|
|
|
(true, false) => {
|
2017-01-22 07:51:13 -06:00
|
|
|
let sugg = format!("({}) {} {}",
|
2016-01-03 22:26:12 -06:00
|
|
|
snippet(cx, left.span, ".."),
|
|
|
|
op.to_string(),
|
2017-01-22 07:51:13 -06:00
|
|
|
snippet(cx, right.span, ".."));
|
|
|
|
span_sugg(expr, sugg);
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2015-12-31 14:39:03 -06:00
|
|
|
(false, true) => {
|
2017-01-22 07:51:13 -06:00
|
|
|
let sugg = format!("{} {} ({})",
|
2016-01-03 22:26:12 -06:00
|
|
|
snippet(cx, left.span, ".."),
|
|
|
|
op.to_string(),
|
2017-01-22 07:51:13 -06:00
|
|
|
snippet(cx, right.span, ".."));
|
|
|
|
span_sugg(expr, sugg);
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2017-01-22 07:51:13 -06:00
|
|
|
(false, false) => (),
|
2015-08-30 10:32:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 11:35:44 -06:00
|
|
|
if let ExprKind::Unary(UnOp::Neg, ref rhs) = expr.node {
|
2017-07-10 03:17:40 -05:00
|
|
|
if let ExprKind::MethodCall(_, ref args) = rhs.node {
|
2015-08-30 10:32:35 -05:00
|
|
|
if let Some(slf) = args.first() {
|
2016-02-12 11:35:44 -06:00
|
|
|
if let ExprKind::Lit(ref lit) = slf.node {
|
2015-08-30 10:32:35 -05:00
|
|
|
match lit.node {
|
2016-04-14 13:14:03 -05:00
|
|
|
LitKind::Int(..) |
|
|
|
|
LitKind::Float(..) |
|
|
|
|
LitKind::FloatUnsuffixed(..) => {
|
2017-06-21 13:04:04 -05:00
|
|
|
span_lint_and_sugg(cx,
|
2017-01-22 07:51:13 -06:00
|
|
|
PRECEDENCE,
|
|
|
|
expr.span,
|
|
|
|
"unary minus has lower precedence than method call",
|
2017-06-21 13:04:04 -05:00
|
|
|
"consider adding parentheses to clarify your intent",
|
|
|
|
format!("-({})", snippet(cx, rhs.span, "..")));
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => (),
|
2015-08-30 10:32:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-16 23:22:57 -06:00
|
|
|
fn is_arith_expr(expr: &Expr) -> bool {
|
2015-08-30 10:32:35 -05:00
|
|
|
match expr.node {
|
2016-04-14 13:14:03 -05:00
|
|
|
ExprKind::Binary(Spanned { node: op, .. }, _, _) => is_arith_op(op),
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => false,
|
2015-08-30 10:32:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 11:35:44 -06:00
|
|
|
fn is_bit_op(op: BinOpKind) -> bool {
|
|
|
|
use syntax::ast::BinOpKind::*;
|
2015-08-30 10:32:35 -05:00
|
|
|
match op {
|
2016-02-12 11:35:44 -06:00
|
|
|
BitXor | BitAnd | BitOr | Shl | Shr => true,
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => false,
|
2015-08-30 10:32:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 11:35:44 -06:00
|
|
|
fn is_arith_op(op: BinOpKind) -> bool {
|
|
|
|
use syntax::ast::BinOpKind::*;
|
2015-08-30 10:32:35 -05:00
|
|
|
match op {
|
2016-02-12 11:35:44 -06:00
|
|
|
Add | Sub | Mul | Div | Rem => true,
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => false,
|
2015-08-30 10:32:35 -05:00
|
|
|
}
|
|
|
|
}
|