2016-02-27 10:57:36 -06:00
|
|
|
|
use rustc::lint::*;
|
|
|
|
|
use syntax::codemap::mk_sp;
|
|
|
|
|
use syntax::ast;
|
|
|
|
|
use utils::{differing_macro_contexts, in_macro, snippet_opt, span_note_and_lint};
|
|
|
|
|
use syntax::ptr::P;
|
|
|
|
|
|
|
|
|
|
/// **What it does:** This lint looks for use of the non-existent `=*`, `=!` and `=-` operators.
|
|
|
|
|
///
|
2016-02-27 10:59:04 -06:00
|
|
|
|
/// **Why is this bad?** This is either a typo of `*=`, `!=` or `-=` or confusing.
|
2016-02-27 10:57:36 -06:00
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// a =- 42; // confusing, should it be `a -= 42` or `a = -42`?
|
|
|
|
|
/// ```
|
|
|
|
|
declare_lint! {
|
|
|
|
|
pub SUSPICIOUS_ASSIGNMENT_FORMATTING,
|
|
|
|
|
Warn,
|
|
|
|
|
"suspicious formatting of `*=`, `-=` or `!=`"
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-27 10:59:04 -06:00
|
|
|
|
/// **What it does:** This lint checks for formatting of `else if`. It lints if the `else` and `if`
|
|
|
|
|
/// are not on the same line or the `else` seems to be missing.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This is probably some refactoring remnant, even if the code is correct, it
|
|
|
|
|
/// might look confusing.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// if foo {
|
|
|
|
|
/// } if bar { // looks like an `else` is missing here
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// if foo {
|
|
|
|
|
/// } else
|
|
|
|
|
///
|
|
|
|
|
/// if bar { // this is the `else` block of the previous `if`, but should it be?
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
declare_lint! {
|
|
|
|
|
pub SUSPICIOUS_ELSE_FORMATTING,
|
|
|
|
|
Warn,
|
|
|
|
|
"suspicious formatting of `else if`"
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-27 10:57:36 -06:00
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
|
pub struct Formatting;
|
|
|
|
|
|
|
|
|
|
impl LintPass for Formatting {
|
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-02-27 10:59:04 -06:00
|
|
|
|
lint_array![SUSPICIOUS_ASSIGNMENT_FORMATTING, SUSPICIOUS_ELSE_FORMATTING]
|
2016-02-27 10:57:36 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl EarlyLintPass for Formatting {
|
2016-02-27 10:59:04 -06:00
|
|
|
|
fn check_block(&mut self, cx: &EarlyContext, block: &ast::Block) {
|
|
|
|
|
for w in block.stmts.windows(2) {
|
|
|
|
|
match (&w[0].node, &w[1].node) {
|
|
|
|
|
(&ast::StmtKind::Expr(ref first, _), &ast::StmtKind::Expr(ref second, _)) |
|
|
|
|
|
(&ast::StmtKind::Expr(ref first, _), &ast::StmtKind::Semi(ref second, _)) => {
|
|
|
|
|
check_consecutive_ifs(cx, first, second);
|
|
|
|
|
}
|
|
|
|
|
_ => (),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let Some(ref expr) = block.expr {
|
|
|
|
|
if let Some(ref stmt) = block.stmts.iter().last() {
|
|
|
|
|
if let ast::StmtKind::Expr(ref first, _) = stmt.node {
|
|
|
|
|
check_consecutive_ifs(cx, first, expr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-27 10:57:36 -06:00
|
|
|
|
fn check_expr(&mut self, cx: &EarlyContext, expr: &ast::Expr) {
|
|
|
|
|
check_assign(cx, expr);
|
2016-02-27 10:59:04 -06:00
|
|
|
|
check_else_if(cx, expr);
|
2016-02-27 10:57:36 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-19 11:48:29 -05:00
|
|
|
|
/// Implementation of the `SUSPICIOUS_ASSIGNMENT_FORMATTING` lint.
|
2016-02-27 10:57:36 -06:00
|
|
|
|
fn check_assign(cx: &EarlyContext, expr: &ast::Expr) {
|
|
|
|
|
if let ast::ExprKind::Assign(ref lhs, ref rhs) = expr.node {
|
|
|
|
|
if !differing_macro_contexts(lhs.span, rhs.span) && !in_macro(cx, lhs.span) {
|
|
|
|
|
let eq_span = mk_sp(lhs.span.hi, rhs.span.lo);
|
|
|
|
|
|
2016-02-27 11:14:37 -06:00
|
|
|
|
if let ast::ExprKind::Unary(op, ref sub_rhs) = rhs.node {
|
2016-02-27 10:57:36 -06:00
|
|
|
|
if let Some(eq_snippet) = snippet_opt(cx, eq_span) {
|
2016-02-27 11:14:37 -06:00
|
|
|
|
let op = ast::UnOp::to_string(op);
|
2016-02-27 10:57:36 -06:00
|
|
|
|
let eqop_span = mk_sp(lhs.span.hi, sub_rhs.span.lo);
|
|
|
|
|
if eq_snippet.ends_with('=') {
|
|
|
|
|
span_note_and_lint(cx,
|
|
|
|
|
SUSPICIOUS_ASSIGNMENT_FORMATTING,
|
|
|
|
|
eqop_span,
|
2016-02-29 05:19:32 -06:00
|
|
|
|
&format!("this looks like you are trying to use `.. {op}= ..`, but you \
|
|
|
|
|
really are doing `.. = ({op} ..)`",
|
|
|
|
|
op = op),
|
2016-02-27 10:57:36 -06:00
|
|
|
|
eqop_span,
|
2016-02-29 05:19:32 -06:00
|
|
|
|
&format!("to remove this lint, use either `{op}=` or `= {op}`", op = op));
|
2016-02-27 10:57:36 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-19 11:48:29 -05:00
|
|
|
|
/// Implementation of the `SUSPICIOUS_ELSE_FORMATTING` lint for weird `else if`.
|
2016-02-27 10:59:04 -06:00
|
|
|
|
fn check_else_if(cx: &EarlyContext, expr: &ast::Expr) {
|
|
|
|
|
if let Some((then, &Some(ref else_))) = unsugar_if(expr) {
|
2016-02-29 05:19:32 -06:00
|
|
|
|
if unsugar_if(else_).is_some() && !differing_macro_contexts(then.span, else_.span) && !in_macro(cx, then.span) {
|
2016-02-27 10:59:04 -06:00
|
|
|
|
// this will be a span from the closing ‘}’ of the “then” block (excluding) to the
|
|
|
|
|
// “if” of the “else if” block (excluding)
|
|
|
|
|
let else_span = mk_sp(then.span.hi, else_.span.lo);
|
|
|
|
|
|
|
|
|
|
// the snippet should look like " else \n " with maybe comments anywhere
|
|
|
|
|
// it’s bad when there is a ‘\n’ after the “else”
|
|
|
|
|
if let Some(else_snippet) = snippet_opt(cx, else_span) {
|
|
|
|
|
let else_pos = else_snippet.find("else").expect("there must be a `else` here");
|
|
|
|
|
|
|
|
|
|
if else_snippet[else_pos..].contains('\n') {
|
|
|
|
|
span_note_and_lint(cx,
|
|
|
|
|
SUSPICIOUS_ELSE_FORMATTING,
|
|
|
|
|
else_span,
|
|
|
|
|
"this is an `else if` but the formatting might hide it",
|
|
|
|
|
else_span,
|
2016-02-29 05:19:32 -06:00
|
|
|
|
"to remove this lint, remove the `else` or remove the new line between `else` \
|
|
|
|
|
and `if`");
|
2016-02-27 10:59:04 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Implementation of the `SUSPICIOUS_ELSE_FORMATTING` lint for consecutive ifs.
|
|
|
|
|
fn check_consecutive_ifs(cx: &EarlyContext, first: &ast::Expr, second: &ast::Expr) {
|
2016-02-29 05:19:32 -06:00
|
|
|
|
if !differing_macro_contexts(first.span, second.span) && !in_macro(cx, first.span) &&
|
|
|
|
|
unsugar_if(first).is_some() && unsugar_if(second).is_some() {
|
2016-02-27 10:59:04 -06:00
|
|
|
|
// where the else would be
|
|
|
|
|
let else_span = mk_sp(first.span.hi, second.span.lo);
|
|
|
|
|
|
|
|
|
|
if let Some(else_snippet) = snippet_opt(cx, else_span) {
|
|
|
|
|
if !else_snippet.contains('\n') {
|
|
|
|
|
span_note_and_lint(cx,
|
|
|
|
|
SUSPICIOUS_ELSE_FORMATTING,
|
|
|
|
|
else_span,
|
|
|
|
|
"this looks like an `else if` but the `else` is missing",
|
|
|
|
|
else_span,
|
2016-02-29 05:19:32 -06:00
|
|
|
|
"to remove this lint, add the missing `else` or add a new line before the second \
|
|
|
|
|
`if`");
|
2016-02-27 10:59:04 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Match `if` or `else if` expressions and return the `then` and `else` block.
|
2016-02-29 05:19:32 -06:00
|
|
|
|
fn unsugar_if(expr: &ast::Expr) -> Option<(&P<ast::Block>, &Option<P<ast::Expr>>)> {
|
2016-02-27 10:59:04 -06:00
|
|
|
|
match expr.node {
|
|
|
|
|
ast::ExprKind::If(_, ref then, ref else_) |
|
|
|
|
|
ast::ExprKind::IfLet(_, _, ref then, ref else_) => Some((then, else_)),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|