| 126 | } |
| 127 | |
| 128 | RunCommandInfo JSGenerator::getRunArguments(const ProjectInfo &projectInfo, const QString ¤tFile) |
| 129 | { |
| 130 | Q_UNUSED(projectInfo) |
| 131 | if (!QFile::exists(currentFile)) { |
| 132 | OutputPane::instance()->appendText(tr("Please open a JS file in editor!"), OutputPane::ErrorMessage); |
| 133 | } |
| 134 | return {"node", {currentFile}, "", {}, false}; |
| 135 | } |
nothing calls this directly
no test coverage detected