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/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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 | 790 |
791 void AstTyper::VisitExportDeclaration(ExportDeclaration* declaration) { | 791 void AstTyper::VisitExportDeclaration(ExportDeclaration* declaration) { |
792 } | 792 } |
793 | 793 |
794 | 794 |
795 void AstTyper::VisitModuleLiteral(ModuleLiteral* module) { | 795 void AstTyper::VisitModuleLiteral(ModuleLiteral* module) { |
796 RECURSE(Visit(module->body())); | 796 RECURSE(Visit(module->body())); |
797 } | 797 } |
798 | 798 |
799 | 799 |
800 void AstTyper::VisitModuleVariable(ModuleVariable* module) { | |
801 } | |
802 | |
803 | |
804 void AstTyper::VisitModulePath(ModulePath* module) { | 800 void AstTyper::VisitModulePath(ModulePath* module) { |
805 RECURSE(Visit(module->module())); | 801 RECURSE(Visit(module->module())); |
806 } | 802 } |
807 | 803 |
808 | 804 |
809 void AstTyper::VisitModuleUrl(ModuleUrl* module) { | 805 void AstTyper::VisitModuleUrl(ModuleUrl* module) { |
810 } | 806 } |
811 | 807 |
812 | 808 |
813 void AstTyper::VisitModuleStatement(ModuleStatement* stmt) { | 809 void AstTyper::VisitModuleStatement(ModuleStatement* stmt) { |
814 RECURSE(Visit(stmt->body())); | 810 RECURSE(Visit(stmt->body())); |
815 } | 811 } |
816 | 812 |
817 | 813 |
818 } } // namespace v8::internal | 814 } } // namespace v8::internal |
OLD | NEW |