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

Side by Side Diff: src/crankshaft/typing.cc

Issue 2703563002: [ESNext] Implement DynamicImportCall (Closed)
Patch Set: rebase Created 3 years, 8 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
« no previous file with comments | « src/crankshaft/hydrogen.cc ('k') | src/d8.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/crankshaft/typing.h" 5 #include "src/crankshaft/typing.h"
6 6
7 #include "src/ast/compile-time-value.h" 7 #include "src/ast/compile-time-value.h"
8 #include "src/ast/scopes.h" 8 #include "src/ast/scopes.h"
9 #include "src/ast/variables.h" 9 #include "src/ast/variables.h"
10 #include "src/frames-inl.h" 10 #include "src/frames-inl.h"
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 749
750 void AstTyper::VisitSpread(Spread* expr) { UNREACHABLE(); } 750 void AstTyper::VisitSpread(Spread* expr) { UNREACHABLE(); }
751 751
752 752
753 void AstTyper::VisitEmptyParentheses(EmptyParentheses* expr) { 753 void AstTyper::VisitEmptyParentheses(EmptyParentheses* expr) {
754 UNREACHABLE(); 754 UNREACHABLE();
755 } 755 }
756 756
757 void AstTyper::VisitGetIterator(GetIterator* expr) { UNREACHABLE(); } 757 void AstTyper::VisitGetIterator(GetIterator* expr) { UNREACHABLE(); }
758 758
759 void AstTyper::VisitImportCallExpression(ImportCallExpression* expr) {
760 UNREACHABLE();
761 }
762
759 void AstTyper::VisitThisFunction(ThisFunction* expr) {} 763 void AstTyper::VisitThisFunction(ThisFunction* expr) {}
760 764
761 765
762 void AstTyper::VisitSuperPropertyReference(SuperPropertyReference* expr) {} 766 void AstTyper::VisitSuperPropertyReference(SuperPropertyReference* expr) {}
763 767
764 768
765 void AstTyper::VisitSuperCallReference(SuperCallReference* expr) {} 769 void AstTyper::VisitSuperCallReference(SuperCallReference* expr) {}
766 770
767 771
768 void AstTyper::VisitRewritableExpression(RewritableExpression* expr) { 772 void AstTyper::VisitRewritableExpression(RewritableExpression* expr) {
(...skipping 20 matching lines...) Expand all
789 } 793 }
790 794
791 795
792 void AstTyper::VisitFunctionDeclaration(FunctionDeclaration* declaration) { 796 void AstTyper::VisitFunctionDeclaration(FunctionDeclaration* declaration) {
793 RECURSE(Visit(declaration->fun())); 797 RECURSE(Visit(declaration->fun()));
794 } 798 }
795 799
796 800
797 } // namespace internal 801 } // namespace internal
798 } // namespace v8 802 } // namespace v8
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen.cc ('k') | src/d8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698