rust/clippy_lints/src/temporary_assignment.rs

52 lines
1.4 KiB
Rust
Raw Normal View History

use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use crate::rustc::{declare_tool_lint, lint_array};
use crate::rustc::hir::{Expr, ExprKind};
2018-05-30 03:15:50 -05:00
use crate::utils::is_adjusted;
use crate::utils::span_lint;
2015-11-04 03:55:14 -06:00
/// **What it does:** Checks for construction of a structure or tuple just to
/// assign a value in it.
2015-12-14 15:16:56 -06: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 15:16:56 -06:00
///
/// **Known problems:** None.
///
2016-07-15 17:25:44 -05:00
/// **Example:**
/// ```rust
/// (0, 0).0 = 1
/// ```
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
2015-11-04 03:55:14 -06:00
pub TEMPORARY_ASSIGNMENT,
2018-03-28 08:24:26 -05:00
complexity,
2015-11-04 03:55:14 -06:00
"assignments to temporaries"
}
fn is_temporary(expr: &Expr) -> bool {
match expr.node {
2018-07-12 02:30:57 -05:00
ExprKind::Struct(..) | ExprKind::Tup(..) => true,
2015-11-04 03:55:14 -06:00
_ => false,
}
}
#[derive(Copy, Clone)]
2016-06-10 09:17:20 -05:00
pub struct Pass;
2015-11-04 03:55:14 -06:00
2016-06-10 09:17:20 -05:00
impl LintPass for Pass {
2015-11-04 03:55:14 -06: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 02:30:57 -05:00
if let ExprKind::Assign(ref target, _) = expr.node {
if let ExprKind::Field(ref base, _) = target.node {
2018-04-14 22:20:30 -05:00
if is_temporary(base) && !is_adjusted(cx, base) {
2017-09-05 04:33:04 -05:00
span_lint(cx, TEMPORARY_ASSIGNMENT, expr.span, "assignment to temporary");
2018-04-14 22:20:30 -05:00
}
2015-11-04 03:55:14 -06:00
}
}
}
}