Lines Matching refs:resolvedModule
33 JSTaggedValue resolvedModule, in GetNativeOrCjsModuleValue() argument
36 JSHandle<JSTaggedValue> exports = GetNativeOrCjsExports(thread, resolvedModule); in GetNativeOrCjsModuleValue()
41 …edValue> ModuleManagerHelper::GetNativeOrCjsExports(JSThread *thread, JSTaggedValue resolvedModule) in GetNativeOrCjsExports() argument
43 JSHandle<SourceTextModule> module(thread, resolvedModule); in GetNativeOrCjsExports()
50 …LL(WARN) << "Load native module failed, so is " << SourceTextModule::GetModuleName(resolvedModule); in GetNativeOrCjsExports()
60 … "Loading cjs module:" + SourceTextModule::GetModuleName(resolvedModule) + ", failed"; in GetNativeOrCjsExports()
92 …JSHandle<SourceTextModule> resolvedModule = GetResolvedRecordIndexBindingModule(thread, module, bi… in GetModuleValueFromIndexBinding() local
93 return GetModuleValue(thread, resolvedModule, binding->GetIndex()); in GetModuleValueFromIndexBinding()
120 …JSHandle<SourceTextModule> resolvedModule = GetResolvedRecordBindingModule(thread, module, binding… in GetModuleValueFromRecordBinding() local
121 return GetModuleValue(thread, resolvedModule, binding->GetBindingName()); in GetModuleValueFromRecordBinding()
154 JSHandle<SourceTextModule> resolvedModule; in GetLazyModuleValueFromIndexBinding() local
156 resolvedModule = moduleManager->HostGetImportedModule(recordNameStr); in GetLazyModuleValueFromIndexBinding()
158 SourceTextModule::Evaluate(thread, resolvedModule, nullptr); in GetLazyModuleValueFromIndexBinding()
168 resolvedModule = moduleManager->HostGetImportedModule(recordNameStr); in GetLazyModuleValueFromIndexBinding()
170 return GetModuleValue(thread, resolvedModule, binding->GetIndex()); in GetLazyModuleValueFromIndexBinding()
182 JSHandle<SourceTextModule> resolvedModule; in GetLazyModuleValueFromRecordBinding() local
184 resolvedModule = moduleManager->HostGetImportedModule(recordNameStr); in GetLazyModuleValueFromRecordBinding()
186 SourceTextModule::Evaluate(thread, resolvedModule, nullptr); in GetLazyModuleValueFromRecordBinding()
196 resolvedModule = moduleManager->HostGetImportedModule(recordNameStr); in GetLazyModuleValueFromRecordBinding()
198 return GetModuleValue(thread, resolvedModule, binding->GetBindingName()); in GetLazyModuleValueFromRecordBinding()