Home
last modified time | relevance | path

Searched refs:speciesConstructor (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_promise.cpp189 …JSHandle<JSTaggedValue> speciesConstructor = JSObject::GetProperty(thread, thisValue, speciesSymbo… in Race() local
191 if (!(speciesConstructor->IsUndefined() || speciesConstructor->IsNull())) { in Race()
192 thisValue = speciesConstructor; in Race()
/arkcompiler/ets_runtime/ecmascript/
Djs_object.cpp2322 …JSHandle<JSTaggedValue> speciesConstructor = GetProperty(thread, objConstructor, speciesSymbol).Ge… in SlowSpeciesConstructor() local
2326 if (speciesConstructor->IsUndefined() || speciesConstructor->IsNull()) { in SlowSpeciesConstructor()
2330 if (speciesConstructor->IsConstructor()) { in SlowSpeciesConstructor()
2331 return speciesConstructor; in SlowSpeciesConstructor()