Lines Matching defs:objCallInfo
46 EcmaRuntimeCallInfo *objCallInfo =
48 return objCallInfo;
59 auto objCallInfo = CreateEcmaRuntimeCallInfo(thread, 6); // 6 : means the argv length
60 objCallInfo->SetFunction(JSTaggedValue::Undefined());
61 objCallInfo->SetThis(value.GetTaggedValue());
62 objCallInfo->SetCallArg(0, JSTaggedValue(static_cast<int>(ContainerTag::LightWeightSet)));
63 JSTaggedValue result = ContainersPrivate::Load(objCallInfo);
70 auto objCallInfo = CreateEcmaRuntimeCallInfo(thread, 4);
71 objCallInfo->SetFunction(newTarget.GetTaggedValue());
72 objCallInfo->SetNewTarget(newTarget.GetTaggedValue());
73 objCallInfo->SetThis(JSTaggedValue::Undefined());
74 JSTaggedValue result = ContainersLightWeightSet::LightWeightSetConstructor(objCallInfo);