2016-02-27 10:57:36 -06:00
|
|
|
|
use rustc::lint::*;
|
2018-07-19 02:53:23 -05:00
|
|
|
|
use rustc::{declare_lint, lint_array};
|
2016-02-27 10:57:36 -06:00
|
|
|
|
use syntax::ast;
|
2018-05-30 03:15:50 -05:00
|
|
|
|
use crate::utils::{differing_macro_contexts, in_macro, snippet_opt, span_note_and_lint};
|
2016-02-27 10:57:36 -06:00
|
|
|
|
use syntax::ptr::P;
|
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
|
/// **What it does:** Checks for use of the non-existent `=*`, `=!` and `=-`
|
|
|
|
|
/// operators.
|
2016-02-27 10:57:36 -06:00
|
|
|
|
///
|
2017-08-09 02:30:56 -05: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`?
|
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2016-02-27 10:57:36 -06:00
|
|
|
|
pub SUSPICIOUS_ASSIGNMENT_FORMATTING,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
style,
|
2016-02-27 10:57:36 -06:00
|
|
|
|
"suspicious formatting of `*=`, `-=` or `!=`"
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **What it does:** 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.
|
2016-02-27 10:59:04 -06:00
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **Why is this bad?** This is probably some refactoring remnant, even if the
|
|
|
|
|
/// code is correct, it might look confusing.
|
2016-02-27 10:59:04 -06:00
|
|
|
|
///
|
|
|
|
|
/// **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?
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2016-02-27 10:59:04 -06:00
|
|
|
|
pub SUSPICIOUS_ELSE_FORMATTING,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
style,
|
2016-02-27 10:59:04 -06:00
|
|
|
|
"suspicious formatting of `else if`"
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-03 05:10:30 -06:00
|
|
|
|
/// **What it does:** Checks for possible missing comma in an array. It lints if
|
2017-02-04 06:11:43 -06:00
|
|
|
|
/// an array element is a binary operator expression and it lies on two lines.
|
2017-02-03 05:10:30 -06:00
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This could lead to unexpected results.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// let a = &[
|
2017-02-16 10:23:28 -06:00
|
|
|
|
/// -1, -2, -3 // <= no comma here
|
2017-02-03 05:10:30 -06:00
|
|
|
|
/// -4, -5, -6
|
|
|
|
|
/// ];
|
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2017-02-04 06:05:25 -06:00
|
|
|
|
pub POSSIBLE_MISSING_COMMA,
|
2018-03-29 06:41:53 -05:00
|
|
|
|
correctness,
|
2017-02-03 05:10:30 -06:00
|
|
|
|
"possible missing comma in array"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
|
#[derive(Copy, Clone)]
|
2016-02-27 10:57:36 -06:00
|
|
|
|
pub struct Formatting;
|
|
|
|
|
|
|
|
|
|
impl LintPass for Formatting {
|
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
lint_array!(
|
|
|
|
|
SUSPICIOUS_ASSIGNMENT_FORMATTING,
|
|
|
|
|
SUSPICIOUS_ELSE_FORMATTING,
|
|
|
|
|
POSSIBLE_MISSING_COMMA
|
|
|
|
|
)
|
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) {
|
2016-06-28 08:54:23 -05:00
|
|
|
|
(&ast::StmtKind::Expr(ref first), &ast::StmtKind::Expr(ref second)) |
|
|
|
|
|
(&ast::StmtKind::Expr(ref first), &ast::StmtKind::Semi(ref second)) => {
|
2016-02-27 10:59:04 -06:00
|
|
|
|
check_consecutive_ifs(cx, first, second);
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-02-27 10:59:04 -06:00
|
|
|
|
_ => (),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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);
|
2017-02-03 05:10:30 -06:00
|
|
|
|
check_array(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 {
|
2017-03-31 17:14:04 -05:00
|
|
|
|
if !differing_macro_contexts(lhs.span, rhs.span) && !in_macro(lhs.span) {
|
2017-08-31 07:47:45 -05:00
|
|
|
|
let eq_span = lhs.span.between(rhs.span);
|
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);
|
2017-08-31 07:47:45 -05:00
|
|
|
|
let eqop_span = lhs.span.between(sub_rhs.span);
|
2016-02-27 10:57:36 -06:00
|
|
|
|
if eq_snippet.ends_with('=') {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_note_and_lint(
|
|
|
|
|
cx,
|
|
|
|
|
SUSPICIOUS_ASSIGNMENT_FORMATTING,
|
|
|
|
|
eqop_span,
|
|
|
|
|
&format!(
|
|
|
|
|
"this looks like you are trying to use `.. {op}= ..`, but you \
|
2017-09-05 04:33:04 -05:00
|
|
|
|
really are doing `.. = ({op} ..)`",
|
2017-08-09 02:30:56 -05:00
|
|
|
|
op = op
|
|
|
|
|
),
|
|
|
|
|
eqop_span,
|
|
|
|
|
&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) {
|
2017-03-31 17:14:04 -05:00
|
|
|
|
if unsugar_if(else_).is_some() && !differing_macro_contexts(then.span, else_.span) && !in_macro(then.span) {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
// this will be a span from the closing ‘}’ of the “then” block (excluding) to
|
|
|
|
|
// the
|
2016-02-27 10:59:04 -06:00
|
|
|
|
// “if” of the “else if” block (excluding)
|
2017-08-31 07:47:45 -05:00
|
|
|
|
let else_span = then.span.between(else_.span);
|
2016-02-27 10:59:04 -06:00
|
|
|
|
|
|
|
|
|
// 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) {
|
2017-09-05 04:33:04 -05:00
|
|
|
|
let else_pos = else_snippet
|
|
|
|
|
.find("else")
|
|
|
|
|
.expect("there must be a `else` here");
|
2016-02-27 10:59:04 -06:00
|
|
|
|
|
|
|
|
|
if else_snippet[else_pos..].contains('\n') {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_note_and_lint(
|
|
|
|
|
cx,
|
|
|
|
|
SUSPICIOUS_ELSE_FORMATTING,
|
|
|
|
|
else_span,
|
|
|
|
|
"this is an `else if` but the formatting might hide it",
|
|
|
|
|
else_span,
|
|
|
|
|
"to remove this lint, remove the `else` or remove the new line between `else` \
|
2017-09-05 04:33:04 -05:00
|
|
|
|
and `if`",
|
2017-08-09 02:30:56 -05:00
|
|
|
|
);
|
2016-02-27 10:59:04 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-04 21:06:19 -06:00
|
|
|
|
/// Implementation of the `POSSIBLE_MISSING_COMMA` lint for array
|
2017-02-03 05:10:30 -06:00
|
|
|
|
fn check_array(cx: &EarlyContext, expr: &ast::Expr) {
|
|
|
|
|
if let ast::ExprKind::Array(ref array) = expr.node {
|
|
|
|
|
for element in array {
|
|
|
|
|
if let ast::ExprKind::Binary(ref op, ref lhs, _) = element.node {
|
2017-02-04 07:13:36 -06:00
|
|
|
|
if !differing_macro_contexts(lhs.span, op.span) {
|
2017-08-31 07:47:45 -05:00
|
|
|
|
let space_span = lhs.span.between(op.span);
|
2017-02-04 07:13:36 -06:00
|
|
|
|
if let Some(space_snippet) = snippet_opt(cx, space_span) {
|
2017-08-31 07:47:45 -05:00
|
|
|
|
let lint_span = lhs.span.with_lo(lhs.span.hi());
|
2017-02-04 07:13:36 -06:00
|
|
|
|
if space_snippet.contains('\n') {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_note_and_lint(
|
|
|
|
|
cx,
|
|
|
|
|
POSSIBLE_MISSING_COMMA,
|
|
|
|
|
lint_span,
|
|
|
|
|
"possibly missing a comma here",
|
|
|
|
|
lint_span,
|
|
|
|
|
"to remove this lint, add a comma or write the expr in a single line",
|
|
|
|
|
);
|
2017-02-04 07:13:36 -06:00
|
|
|
|
}
|
2017-02-03 05:10:30 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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) {
|
2017-11-04 14:55:56 -05:00
|
|
|
|
if !differing_macro_contexts(first.span, second.span) && !in_macro(first.span) && unsugar_if(first).is_some()
|
|
|
|
|
&& unsugar_if(second).is_some()
|
2017-08-09 02:30:56 -05:00
|
|
|
|
{
|
2016-02-27 10:59:04 -06:00
|
|
|
|
// where the else would be
|
2017-08-31 07:47:45 -05:00
|
|
|
|
let else_span = first.span.between(second.span);
|
2016-02-27 10:59:04 -06:00
|
|
|
|
|
|
|
|
|
if let Some(else_snippet) = snippet_opt(cx, else_span) {
|
|
|
|
|
if !else_snippet.contains('\n') {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_note_and_lint(
|
|
|
|
|
cx,
|
|
|
|
|
SUSPICIOUS_ELSE_FORMATTING,
|
|
|
|
|
else_span,
|
|
|
|
|
"this looks like an `else if` but the `else` is missing",
|
|
|
|
|
else_span,
|
|
|
|
|
"to remove this lint, add the missing `else` or add a new line before the second \
|
2017-09-05 04:33:04 -05:00
|
|
|
|
`if`",
|
2017-08-09 02:30:56 -05:00
|
|
|
|
);
|
2016-02-27 10:59:04 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-29 17:08:43 -05:00
|
|
|
|
/// Match `if` or `if let` 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 {
|
2017-09-05 04:33:04 -05:00
|
|
|
|
ast::ExprKind::If(_, ref then, ref else_) | ast::ExprKind::IfLet(_, _, ref then, ref else_) => {
|
|
|
|
|
Some((then, else_))
|
|
|
|
|
},
|
2016-02-27 10:59:04 -06:00
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|