2020-01-26 20:26:42 -06:00
|
|
|
|
use crate::utils::{differing_macro_contexts, snippet_opt, span_lint_and_help, span_lint_and_note};
|
2019-04-14 06:37:38 -05:00
|
|
|
|
use if_chain::if_chain;
|
2020-02-29 21:23:33 -06:00
|
|
|
|
use rustc_ast::ast::{BinOpKind, Block, Expr, ExprKind, StmtKind, UnOp};
|
2020-01-12 00:08:41 -06:00
|
|
|
|
use rustc_lint::{EarlyContext, EarlyLintPass};
|
2020-03-30 04:02:14 -05:00
|
|
|
|
use rustc_middle::lint::in_external_macro;
|
2020-01-11 05:37:08 -06:00
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-23 15:27:01 -06:00
|
|
|
|
use rustc_span::source_map::Span;
|
2016-02-27 10:57:36 -06:00
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// **What it does:** Checks for use of the non-existent `=*`, `=!` and `=-`
|
|
|
|
|
/// operators.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This is either a typo of `*=`, `!=` or `-=` or
|
|
|
|
|
/// confusing.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// a =- 42; // confusing, should it be `a -= 42` or `a = -42`?
|
|
|
|
|
/// ```
|
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 `!=`"
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-03 10:45:58 -05:00
|
|
|
|
declare_clippy_lint! {
|
|
|
|
|
/// **What it does:** Checks the formatting of a unary operator on the right hand side
|
|
|
|
|
/// of a binary operator. It lints if there is no space between the binary and unary operators,
|
|
|
|
|
/// but there is a space between the unary and its operand.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This is either a typo in the binary operator or confusing.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// if foo <- 30 { // this should be `foo < -30` but looks like a different operator
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// if foo &&! bar { // this should be `foo && !bar` but looks like a different operator
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
pub SUSPICIOUS_UNARY_OP_FORMATTING,
|
|
|
|
|
style,
|
|
|
|
|
"suspicious formatting of unary `-` or `!` on the RHS of a BinOp"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// **What it does:** Checks for formatting of `else`. It lints if the `else`
|
|
|
|
|
/// is followed immediately by a newline 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 {
|
|
|
|
|
/// } { // looks like an `else` is missing here
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// if foo {
|
|
|
|
|
/// } if bar { // looks like an `else` is missing here
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// if foo {
|
|
|
|
|
/// } else
|
|
|
|
|
///
|
|
|
|
|
/// { // this is the `else` block of the previous `if`, but should it be?
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// if foo {
|
|
|
|
|
/// } else
|
|
|
|
|
///
|
|
|
|
|
/// if bar { // this is the `else` block of the previous `if`, but should it be?
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-02-27 10:59:04 -06:00
|
|
|
|
pub SUSPICIOUS_ELSE_FORMATTING,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
style,
|
2018-10-19 17:04:15 -05:00
|
|
|
|
"suspicious formatting of `else`"
|
2016-02-27 10:59:04 -06:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// **What it does:** Checks for possible missing comma in an array. It lints if
|
|
|
|
|
/// an array element is a binary operator expression and it lies on two lines.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This could lead to unexpected results.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// let a = &[
|
|
|
|
|
/// -1, -2, -3 // <= no comma here
|
|
|
|
|
/// -4, -5, -6
|
|
|
|
|
/// ];
|
|
|
|
|
/// ```
|
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"
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
|
declare_lint_pass!(Formatting => [
|
|
|
|
|
SUSPICIOUS_ASSIGNMENT_FORMATTING,
|
2019-10-03 10:45:58 -05:00
|
|
|
|
SUSPICIOUS_UNARY_OP_FORMATTING,
|
2019-04-08 15:43:55 -05:00
|
|
|
|
SUSPICIOUS_ELSE_FORMATTING,
|
|
|
|
|
POSSIBLE_MISSING_COMMA
|
|
|
|
|
]);
|
2016-02-27 10:57:36 -06:00
|
|
|
|
|
|
|
|
|
impl EarlyLintPass for Formatting {
|
2019-06-24 02:39:12 -05:00
|
|
|
|
fn check_block(&mut self, cx: &EarlyContext<'_>, block: &Block) {
|
2016-02-27 10:59:04 -06:00
|
|
|
|
for w in block.stmts.windows(2) {
|
2020-06-09 09:36:01 -05:00
|
|
|
|
if let (StmtKind::Expr(first), StmtKind::Expr(second) | StmtKind::Semi(second)) = (&w[0].kind, &w[1].kind) {
|
|
|
|
|
check_missing_else(cx, first, second);
|
2016-02-27 10:59:04 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-24 02:39:12 -05:00
|
|
|
|
fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
|
2016-02-27 10:57:36 -06:00
|
|
|
|
check_assign(cx, expr);
|
2019-10-03 10:45:58 -05:00
|
|
|
|
check_unop(cx, expr);
|
2018-10-19 17:04:15 -05:00
|
|
|
|
check_else(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.
|
2019-06-24 02:39:12 -05:00
|
|
|
|
fn check_assign(cx: &EarlyContext<'_>, expr: &Expr) {
|
2019-12-23 22:16:04 -06:00
|
|
|
|
if let ExprKind::Assign(ref lhs, ref rhs, _) = expr.kind {
|
2019-08-19 11:30:32 -05:00
|
|
|
|
if !differing_macro_contexts(lhs.span, rhs.span) && !lhs.span.from_expansion() {
|
2017-08-31 07:47:45 -05:00
|
|
|
|
let eq_span = lhs.span.between(rhs.span);
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let ExprKind::Unary(op, ref sub_rhs) = rhs.kind {
|
2016-02-27 10:57:36 -06:00
|
|
|
|
if let Some(eq_snippet) = snippet_opt(cx, eq_span) {
|
2019-06-24 02:39:12 -05:00
|
|
|
|
let op = 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('=') {
|
2020-01-26 20:26:42 -06:00
|
|
|
|
span_lint_and_note(
|
2017-08-09 02:30:56 -05:00
|
|
|
|
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
|
|
|
|
|
),
|
2020-04-18 05:29:36 -05:00
|
|
|
|
None,
|
2017-08-09 02:30:56 -05:00
|
|
|
|
&format!("to remove this lint, use either `{op}=` or `= {op}`", op = op),
|
|
|
|
|
);
|
2016-02-27 10:57:36 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-03 10:45:58 -05:00
|
|
|
|
/// Implementation of the `SUSPICIOUS_UNARY_OP_FORMATTING` lint.
|
|
|
|
|
fn check_unop(cx: &EarlyContext<'_>, expr: &Expr) {
|
|
|
|
|
if_chain! {
|
|
|
|
|
if let ExprKind::Binary(ref binop, ref lhs, ref rhs) = expr.kind;
|
|
|
|
|
if !differing_macro_contexts(lhs.span, rhs.span) && !lhs.span.from_expansion();
|
|
|
|
|
// span between BinOp LHS and RHS
|
|
|
|
|
let binop_span = lhs.span.between(rhs.span);
|
|
|
|
|
// if RHS is a UnOp
|
|
|
|
|
if let ExprKind::Unary(op, ref un_rhs) = rhs.kind;
|
|
|
|
|
// from UnOp operator to UnOp operand
|
|
|
|
|
let unop_operand_span = rhs.span.until(un_rhs.span);
|
|
|
|
|
if let Some(binop_snippet) = snippet_opt(cx, binop_span);
|
|
|
|
|
if let Some(unop_operand_snippet) = snippet_opt(cx, unop_operand_span);
|
|
|
|
|
let binop_str = BinOpKind::to_string(&binop.node);
|
|
|
|
|
// no space after BinOp operator and space after UnOp operator
|
|
|
|
|
if binop_snippet.ends_with(binop_str) && unop_operand_snippet.ends_with(' ');
|
|
|
|
|
then {
|
|
|
|
|
let unop_str = UnOp::to_string(op);
|
|
|
|
|
let eqop_span = lhs.span.between(un_rhs.span);
|
2020-01-26 19:56:22 -06:00
|
|
|
|
span_lint_and_help(
|
2019-10-03 10:45:58 -05:00
|
|
|
|
cx,
|
|
|
|
|
SUSPICIOUS_UNARY_OP_FORMATTING,
|
|
|
|
|
eqop_span,
|
|
|
|
|
&format!(
|
|
|
|
|
"by not having a space between `{binop}` and `{unop}` it looks like \
|
|
|
|
|
`{binop}{unop}` is a single operator",
|
|
|
|
|
binop = binop_str,
|
|
|
|
|
unop = unop_str
|
|
|
|
|
),
|
2020-04-18 05:28:29 -05:00
|
|
|
|
None,
|
2019-10-03 10:45:58 -05:00
|
|
|
|
&format!(
|
|
|
|
|
"put a space between `{binop}` and `{unop}` and remove the space after `{unop}`",
|
|
|
|
|
binop = binop_str,
|
|
|
|
|
unop = unop_str
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-19 17:04:15 -05:00
|
|
|
|
/// Implementation of the `SUSPICIOUS_ELSE_FORMATTING` lint for weird `else`.
|
2019-06-24 02:39:12 -05:00
|
|
|
|
fn check_else(cx: &EarlyContext<'_>, expr: &Expr) {
|
2019-04-14 04:12:51 -05:00
|
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let ExprKind::If(_, then, Some(else_)) = &expr.kind;
|
2019-06-24 02:51:19 -05:00
|
|
|
|
if is_block(else_) || is_if(else_);
|
2019-04-14 04:12:51 -05:00
|
|
|
|
if !differing_macro_contexts(then.span, else_.span);
|
2019-08-19 11:30:32 -05:00
|
|
|
|
if !then.span.from_expansion() && !in_external_macro(cx.sess, expr.span);
|
2018-10-25 20:16:46 -05:00
|
|
|
|
|
2019-04-14 04:12:51 -05:00
|
|
|
|
// workaround for rust-lang/rust#43081
|
|
|
|
|
if expr.span.lo().0 != 0 && expr.span.hi().0 != 0;
|
2016-02-27 10:59:04 -06:00
|
|
|
|
|
2019-04-14 04:12:51 -05:00
|
|
|
|
// this will be a span from the closing ‘}’ of the “then” block (excluding) to
|
2019-04-14 06:37:38 -05:00
|
|
|
|
// the “if” of the “else if” block (excluding)
|
2019-04-14 04:12:51 -05:00
|
|
|
|
let else_span = then.span.between(else_.span);
|
2016-02-27 10:59:04 -06:00
|
|
|
|
|
2019-04-14 04:12:51 -05: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);
|
|
|
|
|
if let Some(else_pos) = else_snippet.find("else");
|
|
|
|
|
if else_snippet[else_pos..].contains('\n');
|
2019-06-24 02:51:19 -05:00
|
|
|
|
let else_desc = if is_if(else_) { "if" } else { "{..}" };
|
2019-04-14 04:12:51 -05:00
|
|
|
|
|
|
|
|
|
then {
|
2020-01-26 20:26:42 -06:00
|
|
|
|
span_lint_and_note(
|
2019-04-14 04:12:51 -05:00
|
|
|
|
cx,
|
|
|
|
|
SUSPICIOUS_ELSE_FORMATTING,
|
|
|
|
|
else_span,
|
|
|
|
|
&format!("this is an `else {}` but the formatting might hide it", else_desc),
|
2020-04-18 05:29:36 -05:00
|
|
|
|
None,
|
2019-04-14 04:12:51 -05:00
|
|
|
|
&format!(
|
|
|
|
|
"to remove this lint, remove the `else` or remove the new line between \
|
|
|
|
|
`else` and `{}`",
|
|
|
|
|
else_desc,
|
|
|
|
|
),
|
|
|
|
|
);
|
2016-02-27 10:59:04 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-18 01:37:41 -05:00
|
|
|
|
#[must_use]
|
2019-06-24 02:39:12 -05:00
|
|
|
|
fn has_unary_equivalent(bin_op: BinOpKind) -> bool {
|
2018-11-05 23:05:13 -06:00
|
|
|
|
// &, *, -
|
2019-06-24 02:39:12 -05:00
|
|
|
|
bin_op == BinOpKind::And || bin_op == BinOpKind::Mul || bin_op == BinOpKind::Sub
|
2018-11-04 02:02:49 -06:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-23 15:27:01 -06:00
|
|
|
|
fn indentation(cx: &EarlyContext<'_>, span: Span) -> usize {
|
|
|
|
|
cx.sess.source_map().lookup_char_pos(span.lo()).col.0
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-04 21:06:19 -06:00
|
|
|
|
/// Implementation of the `POSSIBLE_MISSING_COMMA` lint for array
|
2019-06-24 02:39:12 -05:00
|
|
|
|
fn check_array(cx: &EarlyContext<'_>, expr: &Expr) {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let ExprKind::Array(ref array) = expr.kind {
|
2017-02-03 05:10:30 -06:00
|
|
|
|
for element in array {
|
2020-01-23 15:27:01 -06:00
|
|
|
|
if_chain! {
|
|
|
|
|
if let ExprKind::Binary(ref op, ref lhs, _) = element.kind;
|
|
|
|
|
if has_unary_equivalent(op.node) && !differing_macro_contexts(lhs.span, op.span);
|
|
|
|
|
let space_span = lhs.span.between(op.span);
|
|
|
|
|
if let Some(space_snippet) = snippet_opt(cx, space_span);
|
|
|
|
|
let lint_span = lhs.span.with_lo(lhs.span.hi());
|
|
|
|
|
if space_snippet.contains('\n');
|
|
|
|
|
if indentation(cx, op.span) <= indentation(cx, lhs.span);
|
|
|
|
|
then {
|
2020-01-26 20:26:42 -06:00
|
|
|
|
span_lint_and_note(
|
2020-01-23 15:27:01 -06:00
|
|
|
|
cx,
|
|
|
|
|
POSSIBLE_MISSING_COMMA,
|
|
|
|
|
lint_span,
|
|
|
|
|
"possibly missing a comma here",
|
2020-04-18 05:29:36 -05:00
|
|
|
|
None,
|
2020-01-23 15:27:01 -06:00
|
|
|
|
"to remove this lint, add a comma or write the expr in a single line",
|
|
|
|
|
);
|
2017-02-03 05:10:30 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-24 02:39:12 -05:00
|
|
|
|
fn check_missing_else(cx: &EarlyContext<'_>, first: &Expr, second: &Expr) {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
if !differing_macro_contexts(first.span, second.span)
|
2019-08-19 11:30:32 -05:00
|
|
|
|
&& !first.span.from_expansion()
|
2019-06-24 02:51:19 -05:00
|
|
|
|
&& is_if(first)
|
|
|
|
|
&& (is_block(second) || is_if(second))
|
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') {
|
2019-06-24 02:51:19 -05:00
|
|
|
|
let (looks_like, next_thing) = if is_if(second) {
|
2018-10-19 17:04:15 -05:00
|
|
|
|
("an `else if`", "the second `if`")
|
|
|
|
|
} else {
|
|
|
|
|
("an `else {..}`", "the next block")
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-26 20:26:42 -06:00
|
|
|
|
span_lint_and_note(
|
2017-08-09 02:30:56 -05:00
|
|
|
|
cx,
|
|
|
|
|
SUSPICIOUS_ELSE_FORMATTING,
|
|
|
|
|
else_span,
|
2018-10-19 17:04:15 -05:00
|
|
|
|
&format!("this looks like {} but the `else` is missing", looks_like),
|
2020-04-18 05:29:36 -05:00
|
|
|
|
None,
|
2018-10-19 17:04:15 -05:00
|
|
|
|
&format!(
|
|
|
|
|
"to remove this lint, add the missing `else` or add a new line before {}",
|
|
|
|
|
next_thing,
|
|
|
|
|
),
|
2017-08-09 02:30:56 -05:00
|
|
|
|
);
|
2016-02-27 10:59:04 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-24 02:39:12 -05:00
|
|
|
|
fn is_block(expr: &Expr) -> bool {
|
2020-07-14 07:59:59 -05:00
|
|
|
|
matches!(expr.kind, ExprKind::Block(..))
|
2018-10-19 17:04:15 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-24 02:51:19 -05:00
|
|
|
|
/// Check if the expression is an `if` or `if let`
|
|
|
|
|
fn is_if(expr: &Expr) -> bool {
|
2020-07-14 07:59:59 -05:00
|
|
|
|
matches!(expr.kind, ExprKind::If(..))
|
2016-02-27 10:59:04 -06:00
|
|
|
|
}
|