A helper method which runs the given script file with the given command line arguments @param scriptFile the file of the script to run @param list the command line arguments to pass in
(File scriptFile, List<String> list)
| 240 | * @param list the command line arguments to pass in |
| 241 | */ |
| 242 | public Object run(File scriptFile, List<String> list) throws CompilationFailedException, IOException { |
| 243 | return run(scriptFile, list.toArray(EMPTY_STRING_ARRAY)); |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * A helper method which runs the given cl script with the given command line arguments |