()
| 136 | } |
| 137 | |
| 138 | private void showProperties() { |
| 139 | StringBuilder sb = new StringBuilder(); |
| 140 | sb |
| 141 | .append("# These properties can be used to alter runtime behavior for perf or compatibility.\n") |
| 142 | .append("# Specify them by passing directly to Java -Ddynjs.<property>=<value>\n"); |
| 143 | getOutputStream().print(sb.toString()); |
| 144 | getOutputStream().println(Option.formatOptions(Options.PROPERTIES)); |
| 145 | } |
| 146 | |
| 147 | private void executeFile(File file) throws IOException { |
| 148 | try { |
no test coverage detected