]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/temporary_assignment.rs
Merge pull request #3265 from mikerite/fix-export
[rust.git] / clippy_lints / src / temporary_assignment.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10
11 use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
12 use crate::rustc::{declare_tool_lint, lint_array};
13 use crate::rustc::hir::{Expr, ExprKind};
14 use crate::utils::is_adjusted;
15 use crate::utils::span_lint;
16
17 /// **What it does:** Checks for construction of a structure or tuple just to
18 /// assign a value in it.
19 ///
20 /// **Why is this bad?** Readability. If the structure is only created to be
21 /// updated, why not write the structure you want in the first place?
22 ///
23 /// **Known problems:** None.
24 ///
25 /// **Example:**
26 /// ```rust
27 /// (0, 0).0 = 1
28 /// ```
29 declare_clippy_lint! {
30     pub TEMPORARY_ASSIGNMENT,
31     complexity,
32     "assignments to temporaries"
33 }
34
35 fn is_temporary(expr: &Expr) -> bool {
36     match expr.node {
37         ExprKind::Struct(..) | ExprKind::Tup(..) => true,
38         _ => false,
39     }
40 }
41
42 #[derive(Copy, Clone)]
43 pub struct Pass;
44
45 impl LintPass for Pass {
46     fn get_lints(&self) -> LintArray {
47         lint_array!(TEMPORARY_ASSIGNMENT)
48     }
49 }
50
51 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
52     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
53         if let ExprKind::Assign(ref target, _) = expr.node {
54             if let ExprKind::Field(ref base, _) = target.node {
55                 if is_temporary(base) && !is_adjusted(cx, base) {
56                     span_lint(cx, TEMPORARY_ASSIGNMENT, expr.span, "assignment to temporary");
57                 }
58             }
59         }
60     }
61 }