Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dpanda_file_translator.h43 static JSHandle<Program> GenerateProgramInternal(EcmaVM *vm, MethodLiteral *mainMethodLiteral,
Dpanda_file_translator.cpp127 MethodLiteral *mainMethodLiteral = jsPandaFile->FindMethodLiteral(mainMethodIndex); in GenerateProgram() local
128 return GenerateProgramInternal(vm, mainMethodLiteral, constpool); in GenerateProgram()
132 MethodLiteral *mainMethodLiteral, in GenerateProgramInternal() argument
140 if (mainMethodLiteral == nullptr) { in GenerateProgramInternal()
144 JSHandle<Method> method = factory->NewMethod(mainMethodLiteral); in GenerateProgramInternal()
/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp103 MethodLiteral *mainMethodLiteral = patchFile->FindMethodLiteral(mainMethodIndex); in ExecutePatchMain() local
104 …<Program> program = PandaFileTranslator::GenerateProgramInternal(vm, mainMethodLiteral, constpool); in ExecutePatchMain()