Home
last modified time | relevance | path

Searched refs:SourceTextModuleInfo (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dmodule-inl.h44 SourceTextModuleInfo SourceTextModule::info() const { in info()
48 OBJECT_CONSTRUCTORS_IMPL(SourceTextModuleInfo, FixedArray) in OBJECT_CONSTRUCTORS_IMPL() argument
49 CAST_ACCESSOR(SourceTextModuleInfo) in OBJECT_CONSTRUCTORS_IMPL()
51 FixedArray SourceTextModuleInfo::module_requests() const { in OBJECT_CONSTRUCTORS_IMPL()
55 FixedArray SourceTextModuleInfo::special_exports() const { in special_exports()
59 FixedArray SourceTextModuleInfo::regular_exports() const { in regular_exports()
63 FixedArray SourceTextModuleInfo::regular_imports() const { in regular_imports()
67 FixedArray SourceTextModuleInfo::namespace_imports() const { in namespace_imports()
72 bool SourceTextModuleInfo::Equals(SourceTextModuleInfo other) const { in Equals()
Dsource-text-module.h44 inline SourceTextModuleInfo info() const;
217 class SourceTextModuleInfo : public FixedArray {
219 DECL_CAST(SourceTextModuleInfo)
222 static Handle<SourceTextModuleInfo> New(IsolateT* isolate, Zone* zone,
238 inline bool Equals(SourceTextModuleInfo other) const;
260 OBJECT_CONSTRUCTORS(SourceTextModuleInfo, FixedArray);
Dscope-info.cc46 if (!SourceTextModuleInfo::cast(entry).Equals( in Equals()
47 SourceTextModuleInfo::cast(other_entry))) { in Equals()
159 Handle<SourceTextModuleInfo> module_info; in Create()
161 module_info = SourceTextModuleInfo::New(isolate, zone, in Create()
854 SourceTextModuleInfo ScopeInfo::ModuleDescriptorInfo() const { in ModuleDescriptorInfo()
856 return SourceTextModuleInfo::cast(module_info()); in ModuleDescriptorInfo()
1166 Handle<SourceTextModuleInfo> SourceTextModuleInfo::New( in New()
1218 Handle<SourceTextModuleInfo> result = in New()
1227 template Handle<SourceTextModuleInfo> SourceTextModuleInfo::New(
1229 template Handle<SourceTextModuleInfo> SourceTextModuleInfo::New(
[all …]
Dsource-text-module.tq5 type SourceTextModuleInfo extends FixedArray;
25 // SourceTextModuleInfo::module_requests.
Dscope-info.h32 class SourceTextModuleInfo; variable
147 SourceTextModuleInfo ModuleDescriptorInfo() const;
Dscope-info.tq171 // For a module scope, this part contains the SourceTextModuleInfo, the
175 [flags.scope_type == ScopeType::MODULE_SCOPE]: SourceTextModuleInfo;
Dmodule.h25 class SourceTextModuleInfo; variable
Dobject-list-macros.h222 V(SourceTextModuleInfo) \
Dsource-text-module.cc328 Handle<SourceTextModuleInfo> module_info(module->info(), isolate); in PrepareInstantiate()
500 Handle<SourceTextModuleInfo> module_info(module->info(), isolate); in FinishInstantiate()
/third_party/node/deps/v8/src/ast/
Dmodules.cc180 SourceTextModuleInfo::kRegularExportLength * regular_exports_.size(), in SerializeRegularExports()
197 data[index + SourceTextModuleInfo::kRegularExportLocalNameOffset] = in SerializeRegularExports()
199 data[index + SourceTextModuleInfo::kRegularExportCellIndexOffset] = in SerializeRegularExports()
201 data[index + SourceTextModuleInfo::kRegularExportExportNamesOffset] = in SerializeRegularExports()
203 index += SourceTextModuleInfo::kRegularExportLength; in SerializeRegularExports()
Dmodules.h19 class SourceTextModuleInfo; variable
/third_party/node/deps/v8/src/heap/
Dfactory-base.h29 class SourceTextModuleInfo; variable
252 Handle<SourceTextModuleInfo> NewSourceTextModuleInfo(); in EXPORT_TEMPLATE_DECLARE()
Dfactory-base.cc836 Handle<SourceTextModuleInfo> FactoryBase<Impl>::NewSourceTextModuleInfo() { in NewSourceTextModuleInfo()
837 return Handle<SourceTextModuleInfo>::cast(NewFixedArrayWithMap( in NewSourceTextModuleInfo()
838 read_only_roots().module_info_map_handle(), SourceTextModuleInfo::kLength, in NewSourceTextModuleInfo()
Dfactory.cc2760 Handle<SourceTextModuleInfo> module_info( in NewSourceTextModule()