Parses the given script and returns it ready to be run @param reader the stream reading the script @param fileName is the logical file name of the script (which is used to create the class name of the script) @return the parsed script which is ready to be run via Script#run()
(final Reader reader, final String fileName)
| 642 | * @return the parsed script which is ready to be run via {@link Script#run()} |
| 643 | */ |
| 644 | public Script parse(final Reader reader, final String fileName) throws CompilationFailedException { |
| 645 | return parse(reader, fileName, context); |
| 646 | } |
| 647 | |
| 648 | /** |
| 649 | * Parses the given script and returns it ready to be run |
no test coverage detected