| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #include "src/ast/ast-expression-visitor.h" | 7 #include "src/ast/ast-expression-visitor.h" |
| 8 | 8 |
| 9 #include "src/ast/ast.h" | 9 #include "src/ast/ast.h" |
| 10 #include "src/ast/scopes.h" | 10 #include "src/ast/scopes.h" |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 | 164 |
| 165 | 165 |
| 166 void AstExpressionVisitor::VisitForInStatement(ForInStatement* stmt) { | 166 void AstExpressionVisitor::VisitForInStatement(ForInStatement* stmt) { |
| 167 RECURSE(Visit(stmt->enumerable())); | 167 RECURSE(Visit(stmt->enumerable())); |
| 168 RECURSE(Visit(stmt->body())); | 168 RECURSE(Visit(stmt->body())); |
| 169 } | 169 } |
| 170 | 170 |
| 171 | 171 |
| 172 void AstExpressionVisitor::VisitForOfStatement(ForOfStatement* stmt) { | 172 void AstExpressionVisitor::VisitForOfStatement(ForOfStatement* stmt) { |
| 173 RECURSE(Visit(stmt->iterable())); | 173 RECURSE(Visit(stmt->iterable())); |
| 174 RECURSE(Visit(stmt->each())); |
| 175 RECURSE(Visit(stmt->assign_iterator())); |
| 176 RECURSE(Visit(stmt->next_result())); |
| 177 RECURSE(Visit(stmt->result_done())); |
| 178 RECURSE(Visit(stmt->assign_each())); |
| 174 RECURSE(Visit(stmt->body())); | 179 RECURSE(Visit(stmt->body())); |
| 175 } | 180 } |
| 176 | 181 |
| 177 | 182 |
| 178 void AstExpressionVisitor::VisitTryCatchStatement(TryCatchStatement* stmt) { | 183 void AstExpressionVisitor::VisitTryCatchStatement(TryCatchStatement* stmt) { |
| 179 RECURSE(Visit(stmt->try_block())); | 184 RECURSE(Visit(stmt->try_block())); |
| 180 RECURSE(Visit(stmt->catch_block())); | 185 RECURSE(Visit(stmt->catch_block())); |
| 181 } | 186 } |
| 182 | 187 |
| 183 | 188 |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 | 401 |
| 397 void AstExpressionVisitor::VisitRewritableAssignmentExpression( | 402 void AstExpressionVisitor::VisitRewritableAssignmentExpression( |
| 398 RewritableAssignmentExpression* expr) { | 403 RewritableAssignmentExpression* expr) { |
| 399 VisitExpression(expr); | 404 VisitExpression(expr); |
| 400 RECURSE(Visit(expr->expression())); | 405 RECURSE(Visit(expr->expression())); |
| 401 } | 406 } |
| 402 | 407 |
| 403 | 408 |
| 404 } // namespace internal | 409 } // namespace internal |
| 405 } // namespace v8 | 410 } // namespace v8 |
| OLD | NEW |