| Index: src/compiler/ast-loop-assignment-analyzer.cc
|
| diff --git a/src/compiler/ast-loop-assignment-analyzer.cc b/src/compiler/ast-loop-assignment-analyzer.cc
|
| index 70c4057e59f296fd59928df6c3017e2d66e395d2..24ec28e9a1497f347be942ef14c87b27c4b27b88 100644
|
| --- a/src/compiler/ast-loop-assignment-analyzer.cc
|
| +++ b/src/compiler/ast-loop-assignment-analyzer.cc
|
| @@ -274,6 +274,8 @@ void ALAA::VisitForOfStatement(ForOfStatement* loop) {
|
|
|
|
|
| void ALAA::VisitAssignment(Assignment* stmt) {
|
| + RETURN_IF_VISIT_NODE(stmt->destructuring_assignment());
|
| +
|
| Expression* l = stmt->target();
|
| Visit(l);
|
| Visit(stmt->value());
|
|
|