Searched refs:ModuleScope (Results 1 – 6 of 6) sorted by relevance
/third_party/node/deps/v8/src/ast/ |
D | scopes.h | 108 ModuleScope* AsModuleScope(); 109 const ModuleScope* AsModuleScope() const; 1380 class ModuleScope final : public DeclarationScope { 1382 ModuleScope(DeclarationScope* script_scope, AstValueFactory* avfactory); 1385 ModuleScope(Handle<ScopeInfo> scope_info, AstValueFactory* avfactory);
|
D | scopes.cc | 167 ModuleScope::ModuleScope(DeclarationScope* script_scope, in ModuleScope() function in v8::internal::ModuleScope 178 ModuleScope::ModuleScope(Handle<ScopeInfo> scope_info, in ModuleScope() function in v8::internal::ModuleScope 473 outer_scope = zone->New<ModuleScope>(handle(scope_info, isolate), in DeserializeScopeChain() 568 ModuleScope* Scope::AsModuleScope() { in AsModuleScope() 570 return static_cast<ModuleScope*>(this); in AsModuleScope() 573 const ModuleScope* Scope::AsModuleScope() const { in AsModuleScope() 575 return static_cast<const ModuleScope*>(this); in AsModuleScope() 2557 void ModuleScope::AllocateModuleVariables() { in AllocateModuleVariables()
|
D | modules.h | 85 bool Validate(ModuleScope* module_scope,
|
D | modules.cc | 339 ModuleScope* module_scope, PendingCompilationErrorHandler* error_handler, in Validate()
|
/third_party/node/deps/v8/src/common/ |
D | globals.h | 731 class ModuleScope; variable
|
/third_party/node/deps/v8/src/parsing/ |
D | parser-base.h | 778 ModuleScope* NewModuleScope(DeclarationScope* parent) const { in NewModuleScope() 779 return zone()->template New<ModuleScope>(parent, ast_value_factory()); in NewModuleScope()
|