Lines Matching refs:asyncMethod
2598 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()
2662 ir::MethodDefinition *implMethod = CreateAsyncImplMethod(asyncMethod, classDef); in CreateAsyncProxy()
2681 bool isStatic = asyncMethod->IsStatic(); in CreateAsyncProxy()
2690 implMethod->SetParent(asyncMethod->Parent()); in CreateAsyncProxy()