Lines Matching refs:asyncMethod
1742 std::string ETSChecker::GetAsyncImplName(ir::MethodDefinition *asyncMethod) in GetAsyncImplName() argument
1744 ir::Identifier *asyncName = asyncMethod->Function()->Id(); in GetAsyncImplName()
1759 ir::MethodDefinition *ETSChecker::CreateAsyncImplMethod(ir::MethodDefinition *asyncMethod, in CreateAsyncImplMethod() argument
1762 util::UString implName(GetAsyncImplName(asyncMethod), Allocator()); in CreateAsyncImplMethod()
1763 ir::ModifierFlags modifiers = asyncMethod->Modifiers(); in CreateAsyncImplMethod()
1766 ir::ScriptFunction *asyncFunc = asyncMethod->Function(); in CreateAsyncImplMethod()
1777 asyncMethod->AddModifier(ir::ModifierFlags::NATIVE); in CreateAsyncImplMethod()
1820 implMethod->SetParent(asyncMethod->Parent()); in CreateAsyncImplMethod()
1840 ir::MethodDefinition *ETSChecker::CreateAsyncProxy(ir::MethodDefinition *asyncMethod, ir::ClassDefi… in CreateAsyncProxy() argument
1843 ir::ScriptFunction *asyncFunc = asyncMethod->Function(); in CreateAsyncProxy()
1849 ir::MethodDefinition *implMethod = CreateAsyncImplMethod(asyncMethod, classDef); in CreateAsyncProxy()
1864 bool isStatic = asyncMethod->IsStatic(); in CreateAsyncProxy()
1875 implMethod->SetParent(asyncMethod->Parent()); in CreateAsyncProxy()