(File file)
| 120 | } |
| 121 | |
| 122 | private void showAST(File file) { |
| 123 | try { |
| 124 | getOutputStream().println(runtime.newCompiler().withSource(file).parse().dump(" ")); |
| 125 | } catch (FileNotFoundException e) { |
| 126 | getOutputStream().println("File " + file.getName() + " not found"); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | private void executeSource(String eval) { |
| 131 | executeRunner(runtime.newRunner().withSource( eval)); |
no test coverage detected