rust-clippy/clippy_lints/src/temporary_assignment.rs

51 lines
1.3 KiB
Rust
Raw Normal View History

2015-11-04 09:55:14 +00:00
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use rustc::hir::{Expr, ExprAssign, ExprField, ExprStruct, ExprTup};
2015-11-04 09:55:14 +00:00
use utils::is_adjusted;
use utils::span_lint;
/// **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 {
2016-04-14 18:14:03 +00:00
ExprStruct(..) | ExprTup(..) => 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) {
2015-11-04 09:55:14 +00:00
if let ExprAssign(ref target, _) = expr.node {
2018-04-15 03:20:30 +00:00
if let ExprField(ref base, _) = target.node {
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
}
}
}
}