2015-11-04 03:55:14 -06:00
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::{Expr, ExprAssign, ExprField, ExprStruct, ExprTup, ExprTupField};
|
2015-11-04 03:55:14 -06:00
|
|
|
use utils::is_adjusted;
|
|
|
|
use utils::span_lint;
|
|
|
|
|
2016-08-06 02:55:04 -05: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
|
|
|
///
|
2016-08-06 02:55:04 -05: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
|
|
|
|
/// ```
|
2015-11-04 03:55:14 -06:00
|
|
|
declare_lint! {
|
|
|
|
pub TEMPORARY_ASSIGNMENT,
|
|
|
|
Warn,
|
|
|
|
"assignments to temporaries"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_temporary(expr: &Expr) -> bool {
|
|
|
|
match expr.node {
|
2016-04-14 13:14:03 -05:00
|
|
|
ExprStruct(..) | ExprTup(..) => 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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-10 09:17:20 -05:00
|
|
|
impl LateLintPass for Pass {
|
2016-12-06 04:32:21 -06:00
|
|
|
fn check_expr<'a, 'tcx: 'a>(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2015-11-04 03:55:14 -06:00
|
|
|
if let ExprAssign(ref target, _) = expr.node {
|
|
|
|
match target.node {
|
2016-04-14 13:14:03 -05:00
|
|
|
ExprField(ref base, _) |
|
|
|
|
ExprTupField(ref base, _) => {
|
2015-11-04 03:55:14 -06:00
|
|
|
if is_temporary(base) && !is_adjusted(cx, base) {
|
2016-01-03 22:26:12 -06:00
|
|
|
span_lint(cx, TEMPORARY_ASSIGNMENT, expr.span, "assignment to temporary");
|
2015-11-04 03:55:14 -06:00
|
|
|
}
|
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => (),
|
2015-11-04 03:55:14 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|