]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/needless_borrowed_ref.rs
Auto merge of #4327 - phansch:doctests_perf, r=flip1995
[rust.git] / clippy_lints / src / needless_borrowed_ref.rs
1 //! Checks for useless borrowed references.
2 //!
3 //! This lint is **warn** by default
4
5 use crate::utils::{in_macro_or_desugar, snippet, span_lint_and_then};
6 use if_chain::if_chain;
7 use rustc::hir::{BindingAnnotation, MutImmutable, Pat, PatKind};
8 use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
9 use rustc::{declare_lint_pass, declare_tool_lint};
10 use rustc_errors::Applicability;
11
12 declare_clippy_lint! {
13     /// **What it does:** Checks for useless borrowed references.
14     ///
15     /// **Why is this bad?** It is mostly useless and make the code look more
16     /// complex than it
17     /// actually is.
18     ///
19     /// **Known problems:** It seems that the `&ref` pattern is sometimes useful.
20     /// For instance in the following snippet:
21     /// ```rust,ignore
22     /// enum Animal {
23     ///     Cat(u64),
24     ///     Dog(u64),
25     /// }
26     ///
27     /// fn foo(a: &Animal, b: &Animal) {
28     ///     match (a, b) {
29     ///         (&Animal::Cat(v), k) | (k, &Animal::Cat(v)) => (), // lifetime mismatch error
30     ///         (&Animal::Dog(ref c), &Animal::Dog(_)) => ()
31     ///     }
32     /// }
33     /// ```
34     /// There is a lifetime mismatch error for `k` (indeed a and b have distinct
35     /// lifetime).
36     /// This can be fixed by using the `&ref` pattern.
37     /// However, the code can also be fixed by much cleaner ways
38     ///
39     /// **Example:**
40     /// ```rust
41     /// let mut v = Vec::<String>::new();
42     /// let _ = v.iter_mut().filter(|&ref a| a.is_empty());
43     /// ```
44     /// This closure takes a reference on something that has been matched as a
45     /// reference and
46     /// de-referenced.
47     /// As such, it could just be |a| a.is_empty()
48     pub NEEDLESS_BORROWED_REFERENCE,
49     complexity,
50     "taking a needless borrowed reference"
51 }
52
53 declare_lint_pass!(NeedlessBorrowedRef => [NEEDLESS_BORROWED_REFERENCE]);
54
55 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBorrowedRef {
56     fn check_pat(&mut self, cx: &LateContext<'a, 'tcx>, pat: &'tcx Pat) {
57         if in_macro_or_desugar(pat.span) {
58             // OK, simple enough, lints doesn't check in macro.
59             return;
60         }
61
62         if_chain! {
63             // Only lint immutable refs, because `&mut ref T` may be useful.
64             if let PatKind::Ref(ref sub_pat, MutImmutable) = pat.node;
65
66             // Check sub_pat got a `ref` keyword (excluding `ref mut`).
67             if let PatKind::Binding(BindingAnnotation::Ref, .., spanned_name, _) = sub_pat.node;
68             then {
69                 span_lint_and_then(cx, NEEDLESS_BORROWED_REFERENCE, pat.span,
70                                    "this pattern takes a reference on something that is being de-referenced",
71                                    |db| {
72                                        let hint = snippet(cx, spanned_name.span, "..").into_owned();
73                                        db.span_suggestion(
74                                            pat.span,
75                                            "try removing the `&ref` part and just keep",
76                                            hint,
77                                            Applicability::MachineApplicable, // snippet
78                                        );
79                                    });
80             }
81         }
82     }
83 }