| 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())); | 174 RECURSE(Visit(stmt->assign_iterator())); |
| 176 RECURSE(Visit(stmt->next_result())); | 175 RECURSE(Visit(stmt->next_result())); |
| 177 RECURSE(Visit(stmt->result_done())); | 176 RECURSE(Visit(stmt->result_done())); |
| 178 RECURSE(Visit(stmt->assign_each())); | 177 RECURSE(Visit(stmt->assign_each())); |
| 179 RECURSE(Visit(stmt->body())); | 178 RECURSE(Visit(stmt->body())); |
| 180 } | 179 } |
| 181 | 180 |
| 182 | 181 |
| 183 void AstExpressionVisitor::VisitTryCatchStatement(TryCatchStatement* stmt) { | 182 void AstExpressionVisitor::VisitTryCatchStatement(TryCatchStatement* stmt) { |
| 184 RECURSE(Visit(stmt->try_block())); | 183 RECURSE(Visit(stmt->try_block())); |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 | 401 |
| 403 void AstExpressionVisitor::VisitRewritableExpression( | 402 void AstExpressionVisitor::VisitRewritableExpression( |
| 404 RewritableExpression* expr) { | 403 RewritableExpression* expr) { |
| 405 VisitExpression(expr); | 404 VisitExpression(expr); |
| 406 RECURSE(Visit(expr->expression())); | 405 RECURSE(Visit(expr->expression())); |
| 407 } | 406 } |
| 408 | 407 |
| 409 | 408 |
| 410 } // namespace internal | 409 } // namespace internal |
| 411 } // namespace v8 | 410 } // namespace v8 |
| OLD | NEW |