rust/clippy_lints/src/needless_borrow.rs

100 lines
3.3 KiB
Rust
Raw Normal View History

2016-04-26 08:49:53 -05:00
//! Checks for needless address of operations (`&`)
//!
//! This lint is **warn** by default
use rustc::lint::*;
2017-09-05 04:33:04 -05:00
use rustc::hir::{BindingAnnotation, Expr, ExprAddrOf, MutImmutable, Pat, PatKind};
use rustc::ty;
2017-09-05 04:33:04 -05:00
use rustc::ty::adjustment::{Adjust, Adjustment};
2017-09-15 21:27:24 -05:00
use utils::{in_macro, snippet_opt, span_lint_and_then};
2016-04-26 08:49:53 -05:00
/// **What it does:** Checks for address of operations (`&`) that are going to
/// be dereferenced immediately by the compiler.
2016-04-26 08:49:53 -05:00
///
/// **Why is this bad?** Suggests that the receiver of the expression borrows
/// the expression.
2016-04-26 08:49:53 -05:00
///
/// **Known problems:** None.
2016-04-26 08:49:53 -05:00
///
2016-07-15 17:25:44 -05:00
/// **Example:**
/// ```rust
/// let x: &i32 = &&&&&&5;
/// ```
2016-04-26 08:49:53 -05:00
declare_lint! {
pub NEEDLESS_BORROW,
Warn,
"taking a reference that is going to be automatically dereferenced"
}
2017-08-09 02:30:56 -05:00
#[derive(Copy, Clone)]
2016-04-26 08:49:53 -05:00
pub struct NeedlessBorrow;
impl LintPass for NeedlessBorrow {
fn get_lints(&self) -> LintArray {
lint_array!(NEEDLESS_BORROW)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBorrow {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
if in_macro(e.span) {
2016-04-26 08:49:53 -05:00
return;
}
if let ExprAddrOf(MutImmutable, ref inner) = e.node {
2017-01-13 10:04:56 -06:00
if let ty::TyRef(..) = cx.tables.expr_ty(inner).sty {
2017-06-04 16:28:01 -05:00
for adj3 in cx.tables.expr_adjustments(e).windows(3) {
2017-09-05 04:33:04 -05:00
if let [Adjustment {
kind: Adjust::Deref(_),
..
}, Adjustment {
kind: Adjust::Deref(_),
..
}, Adjustment {
kind: Adjust::Borrow(_),
..
}] = *adj3
{
2017-09-15 21:27:24 -05:00
span_lint_and_then(
2017-09-05 04:33:04 -05:00
cx,
NEEDLESS_BORROW,
e.span,
2017-09-15 21:27:24 -05:00
"this expression borrows a reference that is immediately dereferenced \
by the compiler",
|db| {
if let Some(snippet) = snippet_opt(cx, inner.span) {
db.span_suggestion(e.span, "change this to", snippet);
}
}
2017-09-05 04:33:04 -05:00
);
2017-06-04 16:28:01 -05:00
}
2016-04-26 08:49:53 -05:00
}
}
}
}
fn check_pat(&mut self, cx: &LateContext<'a, 'tcx>, pat: &'tcx Pat) {
if in_macro(pat.span) {
2016-08-01 09:59:14 -05:00
return;
}
if_let_chain! {[
2017-09-15 21:27:24 -05:00
let PatKind::Binding(BindingAnnotation::Ref, _, name, _) = pat.node,
2017-01-13 10:04:56 -06:00
let ty::TyRef(_, ref tam) = cx.tables.pat_ty(pat).sty,
tam.mutbl == MutImmutable,
let ty::TyRef(_, ref tam) = tam.ty.sty,
// only lint immutable refs, because borrowed `&mut T` cannot be moved out
tam.mutbl == MutImmutable,
], {
2017-09-15 21:27:24 -05:00
span_lint_and_then(
cx,
NEEDLESS_BORROW,
pat.span,
"this pattern creates a reference to a reference",
|db| {
if let Some(snippet) = snippet_opt(cx, name.span) {
db.span_suggestion(pat.span, "change this to", snippet);
}
}
)
}}
2016-08-01 09:59:14 -05:00
}
2016-04-26 08:49:53 -05:00
}