请问Runtime.cpp中的“start-logic”怎么来的?

请教各位大神一个问题,在Runtime.cpp中有如下代码
if(strcmp(strcmd.c_str(),“start-logic”)==0){
char szDebugArg={0};
sprintf(szDebugArg, “require(‘debugger’)(%s,’%s’)”,dArgParse"debugcfg"].GetString(),g_resourcePath.c_str());
startScript(szDebugArg);
dReplyParse.AddMember(“code”,0,dReplyParse.GetAllocator());

}
==》请问“start-logic”从哪里来,有人研究过吗?

由IDE发送命令给runtime的,在start-logic之前,真机会上传资源文件等,准备完成之后就会发start-logic来告诉runtime启动

谢谢你的解答!