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

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

Issue 2703563002: [ESNext] Implement DynamicImportCall (Closed)
Patch Set: fix build 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 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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 750
751 void AstTyper::VisitSpread(Spread* expr) { UNREACHABLE(); } 751 void AstTyper::VisitSpread(Spread* expr) { UNREACHABLE(); }
752 752
753 753
754 void AstTyper::VisitEmptyParentheses(EmptyParentheses* expr) { 754 void AstTyper::VisitEmptyParentheses(EmptyParentheses* expr) {
755 UNREACHABLE(); 755 UNREACHABLE();
756 } 756 }
757 757
758 void AstTyper::VisitGetIterator(GetIterator* expr) { UNREACHABLE(); } 758 void AstTyper::VisitGetIterator(GetIterator* expr) { UNREACHABLE(); }
759 759
760 void AstTyper::VisitImportCallExpression(ImportCallExpression* expr) {
761 UNREACHABLE();
762 }
763
760 void AstTyper::VisitThisFunction(ThisFunction* expr) {} 764 void AstTyper::VisitThisFunction(ThisFunction* expr) {}
761 765
762 766
763 void AstTyper::VisitSuperPropertyReference(SuperPropertyReference* expr) {} 767 void AstTyper::VisitSuperPropertyReference(SuperPropertyReference* expr) {}
764 768
765 769
766 void AstTyper::VisitSuperCallReference(SuperCallReference* expr) {} 770 void AstTyper::VisitSuperCallReference(SuperCallReference* expr) {}
767 771
768 772
769 void AstTyper::VisitRewritableExpression(RewritableExpression* expr) { 773 void AstTyper::VisitRewritableExpression(RewritableExpression* expr) {
(...skipping 20 matching lines...) Expand all
790 } 794 }
791 795
792 796
793 void AstTyper::VisitFunctionDeclaration(FunctionDeclaration* declaration) { 797 void AstTyper::VisitFunctionDeclaration(FunctionDeclaration* declaration) {
794 RECURSE(Visit(declaration->fun())); 798 RECURSE(Visit(declaration->fun()));
795 } 799 }
796 800
797 801
798 } // namespace internal 802 } // namespace internal
799 } // namespace v8 803 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698