| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/compiler/ast-loop-assignment-analyzer.h" | 5 #include "src/compiler/ast-loop-assignment-analyzer.h" |
| 6 #include "src/compiler.h" | 6 #include "src/compiler.h" |
| 7 #include "src/parser.h" | 7 #include "src/parser.h" |
| 8 | 8 |
| 9 namespace v8 { | 9 namespace v8 { |
| 10 namespace internal { | 10 namespace internal { |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 } | 131 } |
| 132 | 132 |
| 133 | 133 |
| 134 void ALAA::VisitConditional(Conditional* e) { | 134 void ALAA::VisitConditional(Conditional* e) { |
| 135 Visit(e->condition()); | 135 Visit(e->condition()); |
| 136 Visit(e->then_expression()); | 136 Visit(e->then_expression()); |
| 137 Visit(e->else_expression()); | 137 Visit(e->else_expression()); |
| 138 } | 138 } |
| 139 | 139 |
| 140 | 140 |
| 141 void ALAA::VisitAssignmentPattern(AssignmentPattern* e) { |
| 142 Visit(e->expression()); |
| 143 } |
| 144 |
| 145 |
| 141 void ALAA::VisitObjectLiteral(ObjectLiteral* e) { | 146 void ALAA::VisitObjectLiteral(ObjectLiteral* e) { |
| 142 ZoneList<ObjectLiteralProperty*>* properties = e->properties(); | 147 ZoneList<ObjectLiteralProperty*>* properties = e->properties(); |
| 143 for (int i = 0; i < properties->length(); i++) { | 148 for (int i = 0; i < properties->length(); i++) { |
| 144 Visit(properties->at(i)->value()); | 149 Visit(properties->at(i)->value()); |
| 145 } | 150 } |
| 146 } | 151 } |
| 147 | 152 |
| 148 | 153 |
| 149 void ALAA::VisitArrayLiteral(ArrayLiteral* e) { VisitExpressions(e->values()); } | 154 void ALAA::VisitArrayLiteral(ArrayLiteral* e) { VisitExpressions(e->values()); } |
| 150 | 155 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 int count = 0; | 311 int count = 0; |
| 307 int var_index = AstLoopAssignmentAnalyzer::GetVariableIndex(scope, var); | 312 int var_index = AstLoopAssignmentAnalyzer::GetVariableIndex(scope, var); |
| 308 for (size_t i = 0; i < list_.size(); i++) { | 313 for (size_t i = 0; i < list_.size(); i++) { |
| 309 if (list_[i].second->Contains(var_index)) count++; | 314 if (list_[i].second->Contains(var_index)) count++; |
| 310 } | 315 } |
| 311 return count; | 316 return count; |
| 312 } | 317 } |
| 313 } // namespace compiler | 318 } // namespace compiler |
| 314 } // namespace internal | 319 } // namespace internal |
| 315 } // namespace v8 | 320 } // namespace v8 |
| OLD | NEW |