172173174175176177178179180
} public void execute(String code) throws IOException { Path path = new StringPath(code); execute(path); }
9596979899100101
* Executes the script. */ public Value execute(String script) throws IOException { return execute(new StringPath(script)); }
176177178179180181182183184