Lines Matching refs:entrypoint
92 << " [OPTIONS] [file] [entrypoint] -- [arguments]" << std::endl;
99 const panda::PandArg<std::string> &file, const panda::PandArg<std::string> &entrypoint,
116 if (file.GetValue().empty() || entrypoint.GetValue().empty() || help.GetValue()) {
142 panda::PandArg<std::string> &entrypoint, RuntimeOptions &runtime_options)
156 std::string entry = entrypoint.GetValue();
201 panda::PandArg<std::string> entrypoint("entrypoint", "", "full name of entrypoint function or method");
210 pa_parser.PushBackTail(&entrypoint);
214 if (!panda::PrepareArguments(&pa_parser, runtime_options, file, entrypoint, help, argc, argv)) {
246 return ExecutePandaFile(options, pa_parser, file, entrypoint, runtime_options);