OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |