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

Side by Side Diff: src/typing.cc

Issue 918373002: Strip Interface class of most of its logic, make it all about Module exports (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Properly freeze interface at the end of ParseModule Created 5 years, 10 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/scopes.cc ('k') | src/variables.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/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
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
OLDNEW
« no previous file with comments | « src/scopes.cc ('k') | src/variables.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698