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

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

Issue 2557593004: [ignition] desugar GetIterator() via bytecode rather than via AST (Closed)
Patch Set: georg's comments Created 4 years 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/full-codegen/full-codegen.cc » ('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 750
751 751
752 void AstTyper::VisitSpread(Spread* expr) { UNREACHABLE(); } 752 void AstTyper::VisitSpread(Spread* expr) { UNREACHABLE(); }
753 753
754 754
755 void AstTyper::VisitEmptyParentheses(EmptyParentheses* expr) { 755 void AstTyper::VisitEmptyParentheses(EmptyParentheses* expr) {
756 UNREACHABLE(); 756 UNREACHABLE();
757 } 757 }
758 758
759 void AstTyper::VisitGetIterator(GetIterator* expr) { UNREACHABLE(); }
759 760
760 void AstTyper::VisitThisFunction(ThisFunction* expr) {} 761 void AstTyper::VisitThisFunction(ThisFunction* expr) {}
761 762
762 763
763 void AstTyper::VisitSuperPropertyReference(SuperPropertyReference* expr) {} 764 void AstTyper::VisitSuperPropertyReference(SuperPropertyReference* expr) {}
764 765
765 766
766 void AstTyper::VisitSuperCallReference(SuperCallReference* expr) {} 767 void AstTyper::VisitSuperCallReference(SuperCallReference* expr) {}
767 768
768 769
(...skipping 21 matching lines...) Expand all
790 } 791 }
791 792
792 793
793 void AstTyper::VisitFunctionDeclaration(FunctionDeclaration* declaration) { 794 void AstTyper::VisitFunctionDeclaration(FunctionDeclaration* declaration) {
794 RECURSE(Visit(declaration->fun())); 795 RECURSE(Visit(declaration->fun()));
795 } 796 }
796 797
797 798
798 } // namespace internal 799 } // namespace internal
799 } // namespace v8 800 } // namespace v8
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698