Lines Matching defs:ctor
102 JSHandle<JSTaggedValue> ctor = GetThis(argv);
104 if (!ctor->IsECMAObject()) {
110 JSHandle<JSTaggedValue> sctor = JSObject::GetProperty(thread, ctor, speciesSymbol).GetValue();
115 ctor = sctor;
118 JSHandle<PromiseCapability> capa = JSPromise::NewPromiseCapability(thread, ctor);
133 JSTaggedValue resultValue = PerformPromiseAll(thread, itRecord, ctor, capa);
438 const JSHandle<JSTaggedValue> &ctor,
446 ASSERT_PRINT(ctor->IsConstructor(), "PerformPromiseAll is not constructor");
517 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, undefined, ctor, undefined, 1);
1055 JSHandle<JSObject> ctor = JSHandle<JSObject>::Cast(promise);
1057 JSHandle<JSTaggedValue> constructor = JSObject::SpeciesConstructor(thread, ctor, promiseFunc);