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 d9ec109e40ecbaebdaf86b69169c10cc1e818367..7f22504ce785325c703b46049817c6c86db42d5d 100644 |
--- a/src/compiler/ast-loop-assignment-analyzer.cc |
+++ b/src/compiler/ast-loop-assignment-analyzer.cc |
@@ -77,6 +77,11 @@ void ALAA::VisitSuperCallReference(SuperCallReference* leaf) {} |
void ALAA::VisitBlock(Block* stmt) { VisitStatements(stmt->statements()); } |
+void ALAA::VisitDoExpression(DoExpression* expr) { |
+ VisitStatements(expr->statements()); |
+} |
+ |
+ |
void ALAA::VisitExpressionStatement(ExpressionStatement* stmt) { |
Visit(stmt->expression()); |
} |