rust/clippy_lints/src/reference.rs

98 lines
3.2 KiB
Rust
Raw Normal View History

use crate::utils::{snippet_with_applicability, span_lint_and_sugg};
use if_chain::if_chain;
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
2019-04-08 15:43:55 -05:00
use rustc::{declare_lint_pass, declare_tool_lint};
use rustc_errors::Applicability;
use syntax::ast::{Expr, ExprKind, UnOp};
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **What it does:** Checks for usage of `*&` and `*&mut` in expressions.
///
/// **Why is this bad?** Immediately dereferencing a reference is no-op and
/// makes the code less clear.
///
/// **Known problems:** Multiple dereference/addrof pairs are not handled so
/// the suggested fix for `x = **&&y` is `x = *&y`, which is still incorrect.
///
/// **Example:**
/// ```rust
/// let a = f(*&mut b);
/// let c = *&d;
/// ```
pub DEREF_ADDROF,
2018-03-28 08:24:26 -05:00
complexity,
"use of `*&` or `*&mut` in an expression"
}
2019-04-08 15:43:55 -05:00
declare_lint_pass!(DerefAddrOf => [DEREF_ADDROF]);
2016-11-25 08:54:07 -06:00
fn without_parens(mut e: &Expr) -> &Expr {
while let ExprKind::Paren(ref child_e) = e.node {
e = child_e;
}
e
}
2019-04-08 15:43:55 -05:00
impl EarlyLintPass for DerefAddrOf {
2018-07-23 06:01:12 -05:00
fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &Expr) {
if_chain! {
if let ExprKind::Unary(UnOp::Deref, ref deref_target) = e.node;
if let ExprKind::AddrOf(_, ref addrof_target) = without_parens(deref_target).node;
then {
let mut applicability = Applicability::MachineApplicable;
2017-08-09 02:30:56 -05:00
span_lint_and_sugg(
cx,
DEREF_ADDROF,
e.span,
"immediately dereferencing a reference",
"try this",
format!("{}", snippet_with_applicability(cx, addrof_target.span, "_", &mut applicability)),
applicability,
2017-08-09 02:30:56 -05:00
);
}
}
}
}
2018-05-28 02:29:02 -05:00
declare_clippy_lint! {
/// **What it does:** Checks for references in expressions that use
/// auto dereference.
///
/// **Why is this bad?** The reference is a no-op and is automatically
/// dereferenced by the compiler and makes the code less clear.
///
/// **Example:**
/// ```rust
/// struct Point(u32, u32);
/// let point = Foo(30, 20);
/// let x = (&point).x;
/// ```
2018-05-28 02:29:02 -05:00
pub REF_IN_DEREF,
complexity,
"Use of reference in auto dereference expression."
}
2019-04-08 15:43:55 -05:00
declare_lint_pass!(RefInDeref => [REF_IN_DEREF]);
2018-05-28 02:29:02 -05:00
2019-04-08 15:43:55 -05:00
impl EarlyLintPass for RefInDeref {
2018-07-23 06:01:12 -05:00
fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &Expr) {
2018-05-28 02:29:02 -05:00
if_chain! {
if let ExprKind::Field(ref object, _) = e.node;
2018-05-28 02:29:02 -05:00
if let ExprKind::Paren(ref parened) = object.node;
if let ExprKind::AddrOf(_, ref inner) = parened.node;
then {
let mut applicability = Applicability::MachineApplicable;
2018-05-28 02:29:02 -05:00
span_lint_and_sugg(
cx,
REF_IN_DEREF,
object.span,
"Creating a reference that is immediately dereferenced.",
"try this",
snippet_with_applicability(cx, inner.span, "_", &mut applicability).to_string(),
applicability,
2018-05-28 02:29:02 -05:00
);
}
}
}
}