Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/ets2panda/checker/ets/
Dfunction.cpp2598 std::string ETSChecker::GetAsyncImplName(ir::MethodDefinition *asyncMethod) in GetAsyncImplName() argument
2600 ir::Identifier *asyncName = asyncMethod->Function()->Id(); in GetAsyncImplName()
2605 ir::MethodDefinition *ETSChecker::CreateAsyncImplMethod(ir::MethodDefinition *asyncMethod, in CreateAsyncImplMethod() argument
2608 util::UString implName(GetAsyncImplName(asyncMethod), Allocator()); in CreateAsyncImplMethod()
2609 ir::ModifierFlags modifiers = asyncMethod->Modifiers(); in CreateAsyncImplMethod()
2612 ir::ScriptFunction *asyncFunc = asyncMethod->Function(); in CreateAsyncImplMethod()
2617 asyncMethod->AddModifier(ir::ModifierFlags::NATIVE); in CreateAsyncImplMethod()
2650 implMethod->SetParent(asyncMethod->Parent()); in CreateAsyncImplMethod()
2656 ir::MethodDefinition *ETSChecker::CreateAsyncProxy(ir::MethodDefinition *asyncMethod, ir::ClassDefi… in CreateAsyncProxy() argument
2659 ir::ScriptFunction *asyncFunc = asyncMethod->Function(); in CreateAsyncProxy()
[all …]
/arkcompiler/ets_frontend/ets2panda/checker/
DETSchecker.h414 …ir::MethodDefinition *CreateAsyncImplMethod(ir::MethodDefinition *asyncMethod, ir::ClassDefinition…
415 …ir::MethodDefinition *CreateAsyncProxy(ir::MethodDefinition *asyncMethod, ir::ClassDefinition *cla…
432 static std::string GetAsyncImplName(ir::MethodDefinition *asyncMethod);