Home
last modified time | relevance | path

Searched refs:moduleEnvironment (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_manager.cpp104 …JSTaggedValue moduleEnvironment = SourceTextModule::Cast(currentModule.GetTaggedObject())->GetEnvi… in GetModuleValueOutterInternal() local
105 if (moduleEnvironment.IsUndefined()) { in GetModuleValueOutterInternal()
108 ASSERT(moduleEnvironment.IsTaggedArray()); in GetModuleValueOutterInternal()
109 …JSTaggedValue resolvedBinding = TaggedArray::Cast(moduleEnvironment.GetTaggedObject())->Get(index); in GetModuleValueOutterInternal()
304 …JSTaggedValue moduleEnvironment = SourceTextModule::Cast(currentModule.GetTaggedObject())->GetEnvi… in GetModuleValueOutterInternal() local
305 if (moduleEnvironment.IsUndefined()) { in GetModuleValueOutterInternal()
308 int entry = NameDictionary::Cast(moduleEnvironment.GetTaggedObject())->FindEntry(key); in GetModuleValueOutterInternal()
312 …JSTaggedValue resolvedBinding = NameDictionary::Cast(moduleEnvironment.GetTaggedObject())->GetValu… in GetModuleValueOutterInternal()
692 …JSTaggedValue moduleEnvironment = SourceTextModule::Cast(currentModule.GetTaggedObject())->GetEnvi… in GetModuleNamespaceInternal() local
693 if (moduleEnvironment.IsUndefined()) { in GetModuleNamespaceInternal()
[all …]
Djs_module_source_text.cpp417 JSHandle<JSTaggedValue> moduleEnvironment(thread, currentModule->GetEnvironment()); in InitializeEnvironment() local
419 if (moduleEnvironment->IsUndefined()) { in InitializeEnvironment()
422 JSHandle<TaggedArray> environment = JSHandle<TaggedArray>::Cast(moduleEnvironment); in InitializeEnvironment()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecode_info_collector.cpp728 JSTaggedValue moduleEnvironment = currentModule->GetEnvironment(); in CollectRecordImportInfo() local
729 if (moduleEnvironment.IsUndefined()) { in CollectRecordImportInfo()
732 ASSERT(moduleEnvironment.IsTaggedArray()); in CollectRecordImportInfo()
733 JSHandle<TaggedArray> moduleArray(thread, moduleEnvironment); in CollectRecordImportInfo()
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
Dmethod_type_infer.cpp1141 JSTaggedValue moduleEnvironment = currentModule->GetEnvironment(); in InferLdExternalModuleVar() local
1142 if (moduleEnvironment.IsUndefined()) { in InferLdExternalModuleVar()
1145 ASSERT(moduleEnvironment.IsTaggedArray()); in InferLdExternalModuleVar()
1146 JSHandle<TaggedArray> moduleArray(thread, moduleEnvironment); in InferLdExternalModuleVar()
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp463 JSTaggedValue moduleEnvironment = SourceTextModule::Cast( in GetImportModule() local
465 environment.Update(moduleEnvironment); in GetImportModule()