rust-clippy/clippy_lints/src/temporary_assignment.rs

61 lines
1.8 KiB
Rust
Raw Normal View History

2018-10-06 16:18:06 +00:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2018-05-30 08:15:50 +00:00
use crate::utils::is_adjusted;
use crate::utils::span_lint;
use rustc::hir::{Expr, ExprKind};
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use rustc::{declare_tool_lint, lint_array};
2015-11-04 09:55:14 +00:00
/// **What it does:** Checks for construction of a structure or tuple just to
/// assign a value in it.
2015-12-14 21:16:56 +00:00
///
/// **Why is this bad?** Readability. If the structure is only created to be
/// updated, why not write the structure you want in the first place?
2015-12-14 21:16:56 +00:00
///
/// **Known problems:** None.
///
2016-07-15 22:25:44 +00:00
/// **Example:**
/// ```rust
/// (0, 0).0 = 1
/// ```
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
2015-11-04 09:55:14 +00:00
pub TEMPORARY_ASSIGNMENT,
2018-03-28 13:24:26 +00:00
complexity,
2015-11-04 09:55:14 +00:00
"assignments to temporaries"
}
fn is_temporary(expr: &Expr) -> bool {
match expr.node {
2018-07-12 07:30:57 +00:00
ExprKind::Struct(..) | ExprKind::Tup(..) => true,
2015-11-04 09:55:14 +00:00
_ => false,
}
}
#[derive(Copy, Clone)]
2016-06-10 14:17:20 +00:00
pub struct Pass;
2015-11-04 09:55:14 +00:00
2016-06-10 14:17:20 +00:00
impl LintPass for Pass {
2015-11-04 09:55:14 +00:00
fn get_lints(&self) -> LintArray {
lint_array!(TEMPORARY_ASSIGNMENT)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
2018-07-12 07:30:57 +00:00
if let ExprKind::Assign(ref target, _) = expr.node {
if let ExprKind::Field(ref base, _) = target.node {
2018-04-15 03:20:30 +00:00
if is_temporary(base) && !is_adjusted(cx, base) {
2017-09-05 09:33:04 +00:00
span_lint(cx, TEMPORARY_ASSIGNMENT, expr.span, "assignment to temporary");
2018-04-15 03:20:30 +00:00
}
2015-11-04 09:55:14 +00:00
}
}
}
}