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