Searched refs:asyncGenObj (Results 1 – 3 of 3) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_async_generator_object_test.cpp | 63 JSHandle<JSAsyncGeneratorObject> asyncGenObj = in HWTEST_F_L0() local 65 JSAsyncGeneratorState state = asyncGenObj->GetAsyncGeneratorState(); in HWTEST_F_L0()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | pandagen.h | 397 void SuspendAsyncGenerator(const ir::AstNode *node, VReg asyncGenObj); 399 …void AsyncGeneratorResolve(const ir::AstNode *node, VReg asyncGenObj, VReg value, VReg canSuspend); 400 void AsyncGeneratorReject(const ir::AstNode *node, VReg asyncGenObj);
|
D | pandagen.cpp | 1399 void PandaGen::SuspendAsyncGenerator(const ir::AstNode *node, VReg asyncGenObj) in SuspendAsyncGenerator() argument 1451 void PandaGen::AsyncGeneratorResolve(const ir::AstNode *node, VReg asyncGenObj, VReg value, VReg ca… in AsyncGeneratorResolve() argument 1453 ra_.Emit<Asyncgeneratorresolve>(node, asyncGenObj, value, canSuspend); in AsyncGeneratorResolve() 1456 void PandaGen::AsyncGeneratorReject(const ir::AstNode *node, VReg asyncGenObj) in AsyncGeneratorReject() argument 1458 ra_.Emit<Asyncgeneratorreject>(node, asyncGenObj); // value is in acc in AsyncGeneratorReject()
|