Lines Matching defs:resolvedBinding
63 JSTaggedValue resolvedBinding = TaggedArray::Cast(moduleEnvironment.GetTaggedObject())->Get(index);
64 if (resolvedBinding.IsResolvedRecordIndexBinding()) {
65 return ModuleManagerHelper::GetModuleValueFromIndexBinding(thread, module, resolvedBinding);
66 } else if (resolvedBinding.IsResolvedIndexBinding()) {
67 ResolvedIndexBinding *binding = ResolvedIndexBinding::Cast(resolvedBinding.GetTaggedObject());
70 } else if (resolvedBinding.IsResolvedRecordBinding()) {
71 return ModuleManagerHelper::GetModuleValueFromRecordBinding(thread, module, resolvedBinding);
97 JSTaggedValue resolvedBinding = TaggedArray::Cast(moduleEnvironment.GetTaggedObject())->Get(index);
98 if (resolvedBinding.IsResolvedRecordIndexBinding()) {
99 return ModuleManagerHelper::GetLazyModuleValueFromIndexBinding(thread, module, resolvedBinding);
100 } else if (resolvedBinding.IsResolvedIndexBinding()) {
101 ResolvedIndexBinding *binding = ResolvedIndexBinding::Cast(resolvedBinding.GetTaggedObject());
106 } else if (resolvedBinding.IsResolvedRecordBinding()) {
107 return ModuleManagerHelper::GetLazyModuleValueFromRecordBinding(thread, module, resolvedBinding);