| 228 | } |
| 229 | |
| 230 | String OSModule::launchChildProcessBlocking(const String& command) |
| 231 | { |
| 232 | ChildProcess process = ChildProcess(); |
| 233 | process.start(command); |
| 234 | return process.readAllProcessOutput(); |
| 235 | } |
| 236 | |
| 237 | var OSModule::launchFileFromScript(const var::NativeFunctionArgs& args) |
| 238 | { |
no test coverage detected