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

Side by Side Diff: src/ast/scopes.h

Issue 2277253003: [modules] Partial scope info support of modules (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@modules-refactor
Patch Set: This is so much fun. Created 4 years, 3 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/ast/scopeinfo.cc ('k') | src/ast/scopes.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #ifndef V8_AST_SCOPES_H_ 5 #ifndef V8_AST_SCOPES_H_
6 #define V8_AST_SCOPES_H_ 6 #define V8_AST_SCOPES_H_
7 7
8 #include "src/ast/ast.h" 8 #include "src/ast/ast.h"
9 #include "src/base/hashmap.h" 9 #include "src/base/hashmap.h"
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 // Convenience variable; function scopes only. 832 // Convenience variable; function scopes only.
833 Variable* arguments_; 833 Variable* arguments_;
834 // Convenience variable; Subclass constructor only 834 // Convenience variable; Subclass constructor only
835 Variable* this_function_; 835 Variable* this_function_;
836 }; 836 };
837 837
838 class ModuleScope final : public DeclarationScope { 838 class ModuleScope final : public DeclarationScope {
839 public: 839 public:
840 ModuleScope(DeclarationScope* script_scope, 840 ModuleScope(DeclarationScope* script_scope,
841 AstValueFactory* ast_value_factory); 841 AstValueFactory* ast_value_factory);
842 ModuleScope(Isolate* isolate, Handle<ScopeInfo> scope_info,
843 AstValueFactory* ast_value_factory);
842 844
843 ModuleDescriptor* module() const { 845 ModuleDescriptor* module() const {
844 DCHECK_NOT_NULL(module_descriptor_); 846 DCHECK_NOT_NULL(module_descriptor_);
845 return module_descriptor_; 847 return module_descriptor_;
846 } 848 }
847 849
848 // Set MODULE as VariableLocation for all variables that will live in some 850 // Set MODULE as VariableLocation for all variables that will live in some
849 // module's export table. 851 // module's export table.
850 void AllocateModuleVariables(); 852 void AllocateModuleVariables();
851 853
852 private: 854 private:
853 ModuleDescriptor* module_descriptor_; 855 ModuleDescriptor* module_descriptor_;
854 }; 856 };
855 857
856 } // namespace internal 858 } // namespace internal
857 } // namespace v8 859 } // namespace v8
858 860
859 #endif // V8_AST_SCOPES_H_ 861 #endif // V8_AST_SCOPES_H_
OLDNEW
« no previous file with comments | « src/ast/scopeinfo.cc ('k') | src/ast/scopes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698