Home
last modified time | relevance | path

Searched refs:ModuleScope (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/ast/
Dscopes.h108 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);
Dscopes.cc167 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()
Dmodules.h85 bool Validate(ModuleScope* module_scope,
Dmodules.cc339 ModuleScope* module_scope, PendingCompilationErrorHandler* error_handler, in Validate()
/third_party/node/deps/v8/src/common/
Dglobals.h731 class ModuleScope; variable
/third_party/node/deps/v8/src/parsing/
Dparser-base.h778 ModuleScope* NewModuleScope(DeclarationScope* parent) const { in NewModuleScope()
779 return zone()->template New<ModuleScope>(parent, ast_value_factory()); in NewModuleScope()