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-09-15 07:21:58 +00:00
|
|
|
use crate::rustc::hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
|
|
|
|
use crate::rustc::hir::*;
|
|
|
|
use crate::rustc::ty;
|
|
|
|
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
2018-07-19 08:00:54 +00:00
|
|
|
use if_chain::if_chain;
|
2018-09-15 07:21:58 +00:00
|
|
|
use crate::syntax::ast;
|
2018-05-30 08:15:50 +00:00
|
|
|
use crate::utils::{get_parent_expr, span_lint, span_note_and_lint};
|
2016-08-11 03:16:28 +00:00
|
|
|
|
|
|
|
/// **What it does:** Checks for a read and a write to the same variable where
|
|
|
|
/// whether the read occurs before or after the write depends on the evaluation
|
|
|
|
/// order of sub-expressions.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** It is often confusing to read. In addition, the
|
|
|
|
/// sub-expression evaluation order for Rust is not well documented.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Code which intentionally depends on the evaluation
|
|
|
|
/// order, or which is correct for any evaluation order.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let mut x = 0;
|
|
|
|
/// let a = {x = 1; 1} + x;
|
|
|
|
/// // Unclear whether a is 1 or 2.
|
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2016-08-11 03:16:28 +00:00
|
|
|
pub EVAL_ORDER_DEPENDENCE,
|
2018-03-28 13:24:26 +00:00
|
|
|
complexity,
|
2016-08-11 03:16:28 +00:00
|
|
|
"whether a variable read occurs before a write depends on sub-expression evaluation order"
|
|
|
|
}
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **What it does:** Checks for diverging calls that are not match arms or
|
|
|
|
/// statements.
|
2016-09-06 13:15:36 +00:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** It is often confusing to read. In addition, the
|
|
|
|
/// sub-expression evaluation order for Rust is not well documented.
|
|
|
|
///
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **Known problems:** Someone might want to use `some_bool || panic!()` as a
|
|
|
|
/// shorthand.
|
2016-09-06 13:15:36 +00:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let a = b() || panic!() || c();
|
|
|
|
/// // `c()` is dead, `panic!()` is only called if `b()` returns `false`
|
|
|
|
/// let x = (a, b, c, panic!());
|
|
|
|
/// // can simply be replaced by `panic!()`
|
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2016-09-06 13:15:36 +00:00
|
|
|
pub DIVERGING_SUB_EXPRESSION,
|
2018-03-28 13:24:26 +00:00
|
|
|
complexity,
|
2016-09-06 13:15:36 +00:00
|
|
|
"whether an expression contains a diverging sub expression"
|
|
|
|
}
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2016-08-11 03:16:28 +00:00
|
|
|
pub struct EvalOrderDependence;
|
|
|
|
|
|
|
|
impl LintPass for EvalOrderDependence {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-09-06 13:15:36 +00:00
|
|
|
lint_array!(EVAL_ORDER_DEPENDENCE, DIVERGING_SUB_EXPRESSION)
|
2016-08-11 03:16:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for EvalOrderDependence {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2016-08-11 03:16:28 +00:00
|
|
|
// Find a write to a local variable.
|
|
|
|
match expr.node {
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Assign(ref lhs, _) | ExprKind::AssignOp(_, ref lhs, _) => if let ExprKind::Path(ref qpath) = lhs.node {
|
2017-09-05 09:33:04 +00:00
|
|
|
if let QPath::Resolved(_, ref path) = *qpath {
|
|
|
|
if path.segments.len() == 1 {
|
2017-09-12 12:26:40 +00:00
|
|
|
if let def::Def::Local(var) = cx.tables.qpath_def(qpath, lhs.hir_id) {
|
|
|
|
let mut visitor = ReadVisitor {
|
2018-03-15 15:07:15 +00:00
|
|
|
cx,
|
|
|
|
var,
|
2017-09-12 12:26:40 +00:00
|
|
|
write_expr: expr,
|
|
|
|
last_expr: expr,
|
|
|
|
};
|
|
|
|
check_for_unsequenced_reads(&mut visitor);
|
|
|
|
}
|
2016-08-11 03:16:28 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
|
|
|
_ => {},
|
2016-08-11 03:16:28 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_stmt(&mut self, cx: &LateContext<'a, 'tcx>, stmt: &'tcx Stmt) {
|
2016-09-06 13:15:36 +00:00
|
|
|
match stmt.node {
|
2018-07-12 08:53:53 +00:00
|
|
|
StmtKind::Expr(ref e, _) | StmtKind::Semi(ref e, _) => DivergenceVisitor { cx }.maybe_walk_expr(e),
|
2018-07-16 13:07:39 +00:00
|
|
|
StmtKind::Decl(ref d, _) => if let DeclKind::Local(ref local) = d.node {
|
2017-09-05 09:33:04 +00:00
|
|
|
if let Local {
|
|
|
|
init: Some(ref e), ..
|
|
|
|
} = **local
|
|
|
|
{
|
2018-03-15 15:07:15 +00:00
|
|
|
DivergenceVisitor { cx }.visit_expr(e);
|
2016-09-06 13:15:36 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 10:32:21 +00:00
|
|
|
struct DivergenceVisitor<'a, 'tcx: 'a> {
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
|
|
|
}
|
2016-09-06 13:15:36 +00:00
|
|
|
|
|
|
|
impl<'a, 'tcx> DivergenceVisitor<'a, 'tcx> {
|
2016-12-06 10:32:21 +00:00
|
|
|
fn maybe_walk_expr(&mut self, e: &'tcx Expr) {
|
2016-09-06 13:15:36 +00:00
|
|
|
match e.node {
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Closure(.., _) => {},
|
|
|
|
ExprKind::Match(ref e, ref arms, _) => {
|
2016-09-06 13:15:36 +00:00
|
|
|
self.visit_expr(e);
|
|
|
|
for arm in arms {
|
|
|
|
if let Some(ref guard) = arm.guard {
|
2018-09-02 07:38:25 +00:00
|
|
|
match guard {
|
|
|
|
Guard::If(if_expr) => self.visit_expr(if_expr),
|
|
|
|
}
|
2016-09-06 13:15:36 +00:00
|
|
|
}
|
|
|
|
// make sure top level arm expressions aren't linted
|
2016-10-01 12:41:20 +00:00
|
|
|
self.maybe_walk_expr(&*arm.body);
|
2016-09-06 13:15:36 +00:00
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-09-06 13:15:36 +00:00
|
|
|
_ => walk_expr(self, e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn report_diverging_sub_expr(&mut self, e: &Expr) {
|
2016-12-20 17:21:30 +00:00
|
|
|
span_lint(self.cx, DIVERGING_SUB_EXPRESSION, e.span, "sub-expression diverges");
|
2016-09-06 13:15:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 10:32:21 +00:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for DivergenceVisitor<'a, 'tcx> {
|
|
|
|
fn visit_expr(&mut self, e: &'tcx Expr) {
|
2016-09-06 13:15:36 +00:00
|
|
|
match e.node {
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Continue(_) | ExprKind::Break(_, _) | ExprKind::Ret(_) => self.report_diverging_sub_expr(e),
|
|
|
|
ExprKind::Call(ref func, _) => {
|
2017-06-29 13:38:25 +00:00
|
|
|
let typ = self.cx.tables.expr_ty(func);
|
|
|
|
match typ.sty {
|
2018-08-22 21:34:52 +00:00
|
|
|
ty::FnDef(..) | ty::FnPtr(_) => {
|
2017-06-29 13:38:25 +00:00
|
|
|
let sig = typ.fn_sig(self.cx.tcx);
|
2018-08-22 21:34:52 +00:00
|
|
|
if let ty::Never = self.cx.tcx.erase_late_bound_regions(&sig).output().sty {
|
2016-12-20 17:21:30 +00:00
|
|
|
self.report_diverging_sub_expr(e);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
2016-09-06 13:15:36 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::MethodCall(..) => {
|
2017-01-13 16:04:56 +00:00
|
|
|
let borrowed_table = self.cx.tables;
|
2017-06-02 04:13:04 +00:00
|
|
|
if borrowed_table.expr_ty(e).is_never() {
|
2016-09-13 10:41:37 +00:00
|
|
|
self.report_diverging_sub_expr(e);
|
|
|
|
}
|
|
|
|
},
|
2016-09-13 10:41:20 +00:00
|
|
|
_ => {
|
2017-08-09 07:30:56 +00:00
|
|
|
// do not lint expressions referencing objects of type `!`, as that required a
|
|
|
|
// diverging expression
|
2016-12-21 09:25:14 +00:00
|
|
|
// to begin with
|
2016-09-06 13:15:36 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
self.maybe_walk_expr(e);
|
|
|
|
}
|
2016-12-06 10:32:21 +00:00
|
|
|
fn visit_block(&mut self, _: &'tcx Block) {
|
2016-09-06 13:15:36 +00:00
|
|
|
// don't continue over blocks, LateLintPass already does that
|
|
|
|
}
|
2016-12-06 10:32:21 +00:00
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
2017-05-12 10:02:42 +00:00
|
|
|
NestedVisitorMap::None
|
2016-12-06 10:32:21 +00:00
|
|
|
}
|
2016-08-11 03:16:28 +00:00
|
|
|
}
|
|
|
|
|
2017-05-05 16:51:57 +00:00
|
|
|
/// Walks up the AST from the given write expression (`vis.write_expr`) looking
|
|
|
|
/// for reads to the same variable that are unsequenced relative to the write.
|
2016-08-11 03:16:28 +00:00
|
|
|
///
|
|
|
|
/// This means reads for which there is a common ancestor between the read and
|
|
|
|
/// the write such that
|
|
|
|
///
|
|
|
|
/// * evaluating the ancestor necessarily evaluates both the read and the write
|
|
|
|
/// (for example, `&x` and `|| x = 1` don't necessarily evaluate `x`), and
|
|
|
|
///
|
|
|
|
/// * which one is evaluated first depends on the order of sub-expression
|
|
|
|
/// evaluation. Blocks, `if`s, loops, `match`es, and the short-circuiting
|
|
|
|
/// logical operators are considered to have a defined evaluation order.
|
|
|
|
///
|
|
|
|
/// When such a read is found, the lint is triggered.
|
2018-07-23 11:01:12 +00:00
|
|
|
fn check_for_unsequenced_reads(vis: &mut ReadVisitor<'_, '_>) {
|
2017-02-02 16:53:28 +00:00
|
|
|
let map = &vis.cx.tcx.hir;
|
2016-08-11 03:16:28 +00:00
|
|
|
let mut cur_id = vis.write_expr.id;
|
|
|
|
loop {
|
|
|
|
let parent_id = map.get_parent_node(cur_id);
|
|
|
|
if parent_id == cur_id {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
let parent_node = match map.find(parent_id) {
|
|
|
|
Some(parent) => parent,
|
|
|
|
None => break,
|
|
|
|
};
|
|
|
|
|
|
|
|
let stop_early = match parent_node {
|
2018-08-28 11:13:42 +00:00
|
|
|
Node::Expr(expr) => check_expr(vis, expr),
|
|
|
|
Node::Stmt(stmt) => check_stmt(vis, stmt),
|
|
|
|
Node::Item(_) => {
|
2016-08-11 03:16:28 +00:00
|
|
|
// We reached the top of the function, stop.
|
|
|
|
break;
|
|
|
|
},
|
2016-12-20 17:21:30 +00:00
|
|
|
_ => StopEarly::KeepGoing,
|
2016-08-11 03:16:28 +00:00
|
|
|
};
|
|
|
|
match stop_early {
|
|
|
|
StopEarly::Stop => break,
|
|
|
|
StopEarly::KeepGoing => {},
|
|
|
|
}
|
|
|
|
|
|
|
|
cur_id = parent_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Whether to stop early for the loop in `check_for_unsequenced_reads`. (If
|
|
|
|
/// `check_expr` weren't an independent function, this would be unnecessary and
|
|
|
|
/// we could just use `break`).
|
|
|
|
enum StopEarly {
|
|
|
|
KeepGoing,
|
|
|
|
Stop,
|
|
|
|
}
|
|
|
|
|
2016-12-20 17:21:30 +00:00
|
|
|
fn check_expr<'a, 'tcx>(vis: &mut ReadVisitor<'a, 'tcx>, expr: &'tcx Expr) -> StopEarly {
|
2016-08-11 03:16:28 +00:00
|
|
|
if expr.id == vis.last_expr.id {
|
|
|
|
return StopEarly::KeepGoing;
|
|
|
|
}
|
|
|
|
|
|
|
|
match expr.node {
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Array(_) |
|
|
|
|
ExprKind::Tup(_) |
|
|
|
|
ExprKind::MethodCall(..) |
|
|
|
|
ExprKind::Call(_, _) |
|
|
|
|
ExprKind::Assign(_, _) |
|
|
|
|
ExprKind::Index(_, _) |
|
|
|
|
ExprKind::Repeat(_, _) |
|
|
|
|
ExprKind::Struct(_, _, _) => {
|
2016-08-11 03:16:28 +00:00
|
|
|
walk_expr(vis, expr);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Binary(op, _, _) | ExprKind::AssignOp(op, _, _) => {
|
2018-07-12 07:50:09 +00:00
|
|
|
if op.node == BinOpKind::And || op.node == BinOpKind::Or {
|
2016-08-11 03:16:28 +00:00
|
|
|
// x && y and x || y always evaluate x first, so these are
|
|
|
|
// strictly sequenced.
|
|
|
|
} else {
|
|
|
|
walk_expr(vis, expr);
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Closure(_, _, _, _, _) => {
|
2016-08-11 03:16:28 +00:00
|
|
|
// Either
|
|
|
|
//
|
|
|
|
// * `var` is defined in the closure body, in which case we've
|
|
|
|
// reached the top of the enclosing function and can stop, or
|
|
|
|
//
|
|
|
|
// * `var` is captured by the closure, in which case, because
|
|
|
|
// evaluating a closure does not evaluate its body, we don't
|
|
|
|
// necessarily have a write, so we need to stop to avoid
|
|
|
|
// generating false positives.
|
|
|
|
//
|
|
|
|
// This is also the only place we need to stop early (grrr).
|
|
|
|
return StopEarly::Stop;
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-08-11 03:16:28 +00:00
|
|
|
// All other expressions either have only one child or strictly
|
|
|
|
// sequence the evaluation order of their sub-expressions.
|
2016-12-20 17:21:30 +00:00
|
|
|
_ => {},
|
2016-08-11 03:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vis.last_expr = expr;
|
|
|
|
|
|
|
|
StopEarly::KeepGoing
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_stmt<'a, 'tcx>(vis: &mut ReadVisitor<'a, 'tcx>, stmt: &'tcx Stmt) -> StopEarly {
|
2016-08-11 03:16:28 +00:00
|
|
|
match stmt.node {
|
2018-07-12 08:53:53 +00:00
|
|
|
StmtKind::Expr(ref expr, _) | StmtKind::Semi(ref expr, _) => check_expr(vis, expr),
|
|
|
|
StmtKind::Decl(ref decl, _) => {
|
2016-08-11 03:16:28 +00:00
|
|
|
// If the declaration is of a local variable, check its initializer
|
|
|
|
// expression if it has one. Otherwise, keep going.
|
|
|
|
let local = match decl.node {
|
2018-07-16 13:07:39 +00:00
|
|
|
DeclKind::Local(ref local) => Some(local),
|
2016-08-11 03:16:28 +00:00
|
|
|
_ => None,
|
|
|
|
};
|
2017-09-05 09:33:04 +00:00
|
|
|
local
|
|
|
|
.and_then(|local| local.init.as_ref())
|
|
|
|
.map_or(StopEarly::KeepGoing, |expr| check_expr(vis, expr))
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-08-11 03:16:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A visitor that looks for reads from a variable.
|
2016-12-06 10:32:21 +00:00
|
|
|
struct ReadVisitor<'a, 'tcx: 'a> {
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
2016-08-11 03:16:28 +00:00
|
|
|
/// The id of the variable we're looking for.
|
2017-09-12 12:26:40 +00:00
|
|
|
var: ast::NodeId,
|
2016-08-11 03:16:28 +00:00
|
|
|
/// The expressions where the write to the variable occurred (for reporting
|
|
|
|
/// in the lint).
|
2016-12-06 10:32:21 +00:00
|
|
|
write_expr: &'tcx Expr,
|
2016-08-11 03:16:28 +00:00
|
|
|
/// The last (highest in the AST) expression we've checked, so we know not
|
|
|
|
/// to recheck it.
|
2016-12-06 10:32:21 +00:00
|
|
|
last_expr: &'tcx Expr,
|
2016-08-11 03:16:28 +00:00
|
|
|
}
|
|
|
|
|
2016-12-06 10:32:21 +00:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for ReadVisitor<'a, 'tcx> {
|
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr) {
|
2016-08-11 03:16:28 +00:00
|
|
|
if expr.id == self.last_expr.id {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
match expr.node {
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Path(ref qpath) => {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
|
|
|
if let QPath::Resolved(None, ref path) = *qpath;
|
|
|
|
if path.segments.len() == 1;
|
|
|
|
if let def::Def::Local(local_id) = self.cx.tables.qpath_def(qpath, expr.hir_id);
|
|
|
|
if local_id == self.var;
|
2017-09-12 12:26:40 +00:00
|
|
|
// Check that this is a read, not a write.
|
2017-10-23 19:18:02 +00:00
|
|
|
if !is_in_assignment_position(self.cx, expr);
|
|
|
|
then {
|
|
|
|
span_note_and_lint(
|
|
|
|
self.cx,
|
|
|
|
EVAL_ORDER_DEPENDENCE,
|
|
|
|
expr.span,
|
|
|
|
"unsequenced read of a variable",
|
|
|
|
self.write_expr.span,
|
|
|
|
"whether read occurs before this write depends on evaluation order"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-08-11 03:16:28 +00:00
|
|
|
}
|
|
|
|
// We're about to descend a closure. Since we don't know when (or
|
|
|
|
// if) the closure will be evaluated, any reads in it might not
|
|
|
|
// occur here (or ever). Like above, bail to avoid false positives.
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Closure(_, _, _, _, _) |
|
2016-08-11 03:16:28 +00:00
|
|
|
|
|
|
|
// We want to avoid a false positive when a variable name occurs
|
|
|
|
// only to have its address taken, so we stop here. Technically,
|
|
|
|
// this misses some weird cases, eg.
|
|
|
|
//
|
|
|
|
// ```rust
|
|
|
|
// let mut x = 0;
|
|
|
|
// let a = foo(&{x = 1; x}, x);
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// TODO: fix this
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::AddrOf(_, _) => {
|
2016-08-11 03:16:28 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
walk_expr(self, expr);
|
|
|
|
}
|
2016-12-06 10:32:21 +00:00
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
2017-05-12 10:02:42 +00:00
|
|
|
NestedVisitorMap::None
|
2016-12-06 10:32:21 +00:00
|
|
|
}
|
2016-08-11 03:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if `expr` is the LHS of an assignment, like `expr = ...`.
|
2018-07-23 11:01:12 +00:00
|
|
|
fn is_in_assignment_position(cx: &LateContext<'_, '_>, expr: &Expr) -> bool {
|
2016-08-11 03:16:28 +00:00
|
|
|
if let Some(parent) = get_parent_expr(cx, expr) {
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Assign(ref lhs, _) = parent.node {
|
2016-08-11 03:16:28 +00:00
|
|
|
return lhs.id == expr.id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|