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.cpp103 …JSTaggedValue moduleEnvironment = SourceTextModule::Cast(currentModule.GetTaggedObject())->GetEnvi… in GetModuleValueOutterInternal() local
104 if (moduleEnvironment.IsUndefined()) { in GetModuleValueOutterInternal()
107 ASSERT(moduleEnvironment.IsTaggedArray()); in GetModuleValueOutterInternal()
108 …JSTaggedValue resolvedBinding = TaggedArray::Cast(moduleEnvironment.GetTaggedObject())->Get(index); in GetModuleValueOutterInternal()
263 …JSTaggedValue moduleEnvironment = SourceTextModule::Cast(currentModule.GetTaggedObject())->GetEnvi… in GetModuleValueOutterInternal() local
264 if (moduleEnvironment.IsUndefined()) { in GetModuleValueOutterInternal()
267 int entry = NameDictionary::Cast(moduleEnvironment.GetTaggedObject())->FindEntry(key); in GetModuleValueOutterInternal()
271 …JSTaggedValue resolvedBinding = NameDictionary::Cast(moduleEnvironment.GetTaggedObject())->GetValu… in GetModuleValueOutterInternal()
631 …JSTaggedValue moduleEnvironment = SourceTextModule::Cast(currentModule.GetTaggedObject())->GetEnvi… in GetModuleNamespaceInternal() local
632 if (moduleEnvironment.IsUndefined()) { in GetModuleNamespaceInternal()
[all …]
Djs_module_source_text.cpp396 JSHandle<JSTaggedValue> moduleEnvironment(thread, currentModule->GetEnvironment()); in InitializeEnvironment() local
398 if (moduleEnvironment->IsUndefined()) { in InitializeEnvironment()
401 JSHandle<TaggedArray> environment = JSHandle<TaggedArray>::Cast(moduleEnvironment); in InitializeEnvironment()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecode_info_collector.cpp650 JSTaggedValue moduleEnvironment = currentModule->GetEnvironment(); in CollectRecordImportInfo() local
651 if (moduleEnvironment.IsUndefined()) { in CollectRecordImportInfo()
654 ASSERT(moduleEnvironment.IsTaggedArray()); in CollectRecordImportInfo()
655 JSHandle<TaggedArray> moduleArray(thread, moduleEnvironment); in CollectRecordImportInfo()
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
Dmethod_type_infer.cpp1085 JSTaggedValue moduleEnvironment = currentModule->GetEnvironment(); in InferLdExternalModuleVar() local
1086 if (moduleEnvironment.IsUndefined()) { in InferLdExternalModuleVar()
1089 ASSERT(moduleEnvironment.IsTaggedArray()); in InferLdExternalModuleVar()
1090 JSHandle<TaggedArray> moduleArray(thread, moduleEnvironment); in InferLdExternalModuleVar()
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp406 JSTaggedValue moduleEnvironment = SourceTextModule::Cast( in GetImportModule() local
408 environment.Update(moduleEnvironment); in GetImportModule()