2016-12-20 11:21:30 -06:00
|
|
|
use syntax::ast::{Expr, ExprKind, UnOp};
|
2016-11-22 12:22:37 -06:00
|
|
|
use rustc::lint::*;
|
2017-09-05 04:33:04 -05:00
|
|
|
use utils::{snippet, span_lint_and_sugg};
|
2016-11-22 12:22:37 -06:00
|
|
|
|
|
|
|
/// **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;
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub DEREF_ADDROF,
|
|
|
|
Warn,
|
|
|
|
"use of `*&` or `*&mut` in an expression"
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Pass;
|
|
|
|
|
|
|
|
impl LintPass for Pass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(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
|
|
|
|
}
|
|
|
|
|
|
|
|
impl EarlyLintPass for Pass {
|
|
|
|
fn check_expr(&mut self, cx: &EarlyContext, e: &Expr) {
|
|
|
|
if let ExprKind::Unary(UnOp::Deref, ref deref_target) = e.node {
|
|
|
|
if let ExprKind::AddrOf(_, ref addrof_target) = without_parens(deref_target).node {
|
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(cx, addrof_target.span, "_")),
|
|
|
|
);
|
2016-11-22 12:22:37 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|