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

Side by Side Diff: src/typing.cc

Issue 1399893002: [es7] implement |do| expressions proposal (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix AST numbering issue + add simple TF impl Created 5 years, 2 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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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/typing.h" 5 #include "src/typing.h"
6 6
7 #include "src/frames.h" 7 #include "src/frames.h"
8 #include "src/frames-inl.h" 8 #include "src/frames-inl.h"
9 #include "src/ostreams.h" 9 #include "src/ostreams.h"
10 #include "src/parser.h" // for CompileTimeValue; TODO(rossberg): should move 10 #include "src/parser.h" // for CompileTimeValue; TODO(rossberg): should move
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 void AstTyper::VisitFunctionLiteral(FunctionLiteral* expr) {} 341 void AstTyper::VisitFunctionLiteral(FunctionLiteral* expr) {}
342 342
343 343
344 void AstTyper::VisitClassLiteral(ClassLiteral* expr) {} 344 void AstTyper::VisitClassLiteral(ClassLiteral* expr) {}
345 345
346 346
347 void AstTyper::VisitNativeFunctionLiteral(NativeFunctionLiteral* expr) { 347 void AstTyper::VisitNativeFunctionLiteral(NativeFunctionLiteral* expr) {
348 } 348 }
349 349
350 350
351 void AstTyper::VisitDoExpression(DoExpression* expr) {
352 RECURSE(VisitStatements(expr->statements()));
353 }
354
355
351 void AstTyper::VisitConditional(Conditional* expr) { 356 void AstTyper::VisitConditional(Conditional* expr) {
352 // Collect type feedback. 357 // Collect type feedback.
353 expr->condition()->RecordToBooleanTypeFeedback(oracle()); 358 expr->condition()->RecordToBooleanTypeFeedback(oracle());
354 359
355 RECURSE(Visit(expr->condition())); 360 RECURSE(Visit(expr->condition()));
356 Effects then_effects = EnterEffects(); 361 Effects then_effects = EnterEffects();
357 RECURSE(Visit(expr->then_expression())); 362 RECURSE(Visit(expr->then_expression()));
358 ExitEffects(); 363 ExitEffects();
359 Effects else_effects = EnterEffects(); 364 Effects else_effects = EnterEffects();
360 RECURSE(Visit(expr->else_expression())); 365 RECURSE(Visit(expr->else_expression()));
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 void AstTyper::VisitImportDeclaration(ImportDeclaration* declaration) { 809 void AstTyper::VisitImportDeclaration(ImportDeclaration* declaration) {
805 } 810 }
806 811
807 812
808 void AstTyper::VisitExportDeclaration(ExportDeclaration* declaration) { 813 void AstTyper::VisitExportDeclaration(ExportDeclaration* declaration) {
809 } 814 }
810 815
811 816
812 } // namespace internal 817 } // namespace internal
813 } // namespace v8 818 } // namespace v8
OLDNEW
« src/rewriter.cc ('K') | « src/rewriter.cc ('k') | src/typing-asm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698