(DynJS runtime, InputStream in, OutputStream out)
| 47 | private PrintWriter log; |
| 48 | |
| 49 | public Repl(DynJS runtime, InputStream in, OutputStream out) { |
| 50 | this(runtime, in, out, WELCOME_MESSAGE, PROMPT); |
| 51 | } |
| 52 | |
| 53 | public Repl(DynJS runtime, InputStream in, OutputStream out, String welcome, String prompt) { |
| 54 | this(runtime, in, out, welcome, prompt, System.getProperty("user.dir") + "/dynjs.log"); |
nothing calls this directly
no test coverage detected