Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_generator_object.h46 ACCESSORS(GeneratorObject, GENERATOR_GENERATOR_OBJECT_OFFSET, GENERATOR_LEXICALENV_OFFSET)
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp159 using GeneratorObject = builtins::BuiltinsGenerator; typedef
638 reinterpret_cast<uintptr_t>(GeneratorObject::GeneratorPrototypeNext),
639 reinterpret_cast<uintptr_t>(GeneratorObject::GeneratorPrototypeReturn),
640 reinterpret_cast<uintptr_t>(GeneratorObject::GeneratorPrototypeThrow),
641 reinterpret_cast<uintptr_t>(GeneratorObject::GeneratorFunctionConstructor),
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins.cpp161 using GeneratorObject = builtins::BuiltinsGenerator; typedef
3142 … NewBuiltinConstructor(env, generatorFuncPrototype, GeneratorObject::GeneratorFunctionConstructor, in InitializeGeneratorFunction()
3226 …SetFunction(env, generatorFuncPrototype, "next", GeneratorObject::GeneratorPrototypeNext, Function… in InitializeGenerator()
3228 …SetFunction(env, generatorFuncPrototype, "return", GeneratorObject::GeneratorPrototypeReturn, Func… in InitializeGenerator()
3230 …SetFunction(env, generatorFuncPrototype, "throw", GeneratorObject::GeneratorPrototypeThrow, Functi… in InitializeGenerator()