Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins.cpp1993 JSHandle<JSObject> arrayIteratorPrototype(factory_->NewJSObjectWithInit(iteratorFuncClass)); in InitializeArrayIterator() local
1994 JSHandle<JSTaggedValue> arrayIteratorPrototypeValue(arrayIteratorPrototype); in InitializeArrayIterator()
1998 SetFunction(env, arrayIteratorPrototype, "next", JSArrayIterator::Next, FunctionLength::ZERO, in InitializeArrayIterator()
2001 SetStringTagSymbol(env, arrayIteratorPrototype, "Array Iterator"); in InitializeArrayIterator()
2003 … *arrayIteratorInstanceHClass, arrayIteratorPrototype->GetJSHClass(), *iteratorPrototypeClass); in InitializeArrayIterator()
2004 env->SetArrayIteratorPrototype(thread_, arrayIteratorPrototype); in InitializeArrayIterator()
2011 JSHandle<JSObject> arrayIteratorPrototype(factory_->NewJSObjectWithInit(iteratorFuncClass)); in InitializeSArrayIterator() local
2013 …SetFunction(env, arrayIteratorPrototype, "next", JSSharedArrayIterator::Next, FunctionLength::ZERO… in InitializeSArrayIterator()
2014 SetStringTagSymbol(env, arrayIteratorPrototype, "SharedArray Iterator"); in InitializeSArrayIterator()
2015 env->SetSharedArrayIteratorPrototype(thread_, arrayIteratorPrototype); in InitializeSArrayIterator()