Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(548)

Side by Side Diff: src/compiler/ast-loop-assignment-analyzer.cc

Issue 2703563002: [ESNext] Implement DynamicImportCall (Closed)
Patch Set: simplify error handling Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/ast/scopes.h" 6 #include "src/ast/scopes.h"
7 #include "src/compilation-info.h" 7 #include "src/compilation-info.h"
8 #include "src/objects-inl.h" 8 #include "src/objects-inl.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 } 197 }
198 198
199 199
200 void ALAA::VisitSpread(Spread* e) { UNREACHABLE(); } 200 void ALAA::VisitSpread(Spread* e) { UNREACHABLE(); }
201 201
202 202
203 void ALAA::VisitEmptyParentheses(EmptyParentheses* e) { UNREACHABLE(); } 203 void ALAA::VisitEmptyParentheses(EmptyParentheses* e) { UNREACHABLE(); }
204 204
205 void ALAA::VisitGetIterator(GetIterator* e) { UNREACHABLE(); } 205 void ALAA::VisitGetIterator(GetIterator* e) { UNREACHABLE(); }
206 206
207 void ALAA::VisitImportCallExpression(ImportCallExpression* e) { UNREACHABLE(); }
208
207 void ALAA::VisitCaseClause(CaseClause* cc) { 209 void ALAA::VisitCaseClause(CaseClause* cc) {
208 if (!cc->is_default()) Visit(cc->label()); 210 if (!cc->is_default()) Visit(cc->label());
209 VisitStatements(cc->statements()); 211 VisitStatements(cc->statements());
210 } 212 }
211 213
212 214
213 void ALAA::VisitSloppyBlockFunctionStatement( 215 void ALAA::VisitSloppyBlockFunctionStatement(
214 SloppyBlockFunctionStatement* stmt) { 216 SloppyBlockFunctionStatement* stmt) {
215 Visit(stmt->statement()); 217 Visit(stmt->statement());
216 } 218 }
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 int count = 0; 314 int count = 0;
313 int var_index = AstLoopAssignmentAnalyzer::GetVariableIndex(scope, var); 315 int var_index = AstLoopAssignmentAnalyzer::GetVariableIndex(scope, var);
314 for (size_t i = 0; i < list_.size(); i++) { 316 for (size_t i = 0; i < list_.size(); i++) {
315 if (list_[i].second->Contains(var_index)) count++; 317 if (list_[i].second->Contains(var_index)) count++;
316 } 318 }
317 return count; 319 return count;
318 } 320 }
319 } // namespace compiler 321 } // namespace compiler
320 } // namespace internal 322 } // namespace internal
321 } // namespace v8 323 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698