MCPcopy Create free account
hub / github.com/beanshell/beanshell / run

Method run

src/bsh/util/Sessiond.java:82–94  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

80 }
81
82 public void run()
83 {
84 try
85 {
86 InputStream in = client.getInputStream();
87 PrintStream out = new PrintStream(client.getOutputStream());
88 Interpreter i = new Interpreter(
89 new InputStreamReader(in), out, out, true, globalNameSpace);
90 i.setExitOnEOF( false ); // don't exit interp
91 i.run();
92 }
93 catch(IOException e) { System.out.println(e); }
94 }
95}
96

Callers

nothing calls this directly

Calls 5

setExitOnEOFMethod · 0.95
runMethod · 0.95
getInputStreamMethod · 0.80
getOutputStreamMethod · 0.80
printlnMethod · 0.65

Tested by

no test coverage detected