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 00ca1b341b6f8ecfd68d1101a807b17e25003bec..040999aa05133ea809bde0ae674f9df7d74e9b60 100644 |
--- a/src/compiler/ast-loop-assignment-analyzer.cc |
+++ b/src/compiler/ast-loop-assignment-analyzer.cc |
@@ -261,7 +261,9 @@ void ALAA::VisitForInStatement(ForInStatement* loop) { |
void ALAA::VisitForOfStatement(ForOfStatement* loop) { |
+ Visit(loop->assign_iterator()); |
Enter(loop); |
+ Visit(loop->assign_each()); |
Visit(loop->each()); |
Visit(loop->subject()); |
Visit(loop->body()); |