2015-11-04 09:55:14 +00:00
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
2016-04-07 15:46:48 +00:00
|
|
|
use rustc::hir::{Expr, ExprAssign, ExprField, ExprStruct, ExprTup, ExprTupField};
|
2015-11-04 09:55:14 +00:00
|
|
|
use utils::is_adjusted;
|
|
|
|
use utils::span_lint;
|
|
|
|
|
2016-08-06 07:55:04 +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
|
|
|
///
|
2016-08-06 07:55:04 +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
|
|
|
|
/// ```
|
2015-11-04 09:55:14 +00:00
|
|
|
declare_lint! {
|
|
|
|
pub TEMPORARY_ASSIGNMENT,
|
|
|
|
Warn,
|
|
|
|
"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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
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 {
|
|
|
|
match target.node {
|
2017-09-05 09:33:04 +00:00
|
|
|
ExprField(ref base, _) | ExprTupField(ref base, _) => if is_temporary(base) && !is_adjusted(cx, base) {
|
|
|
|
span_lint(cx, TEMPORARY_ASSIGNMENT, expr.span, "assignment to temporary");
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-01-04 04:26:12 +00:00
|
|
|
_ => (),
|
2015-11-04 09:55:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|