rhino-script-engine
rhino-script-engine copied to clipboard
A replacement for the RhinoScriptEngine which is bundled in Java to use a newser Rhino version
I am running a little script importing a static class using this library as dependency on my Java 11 project. The return type of the function is object instead of...
The reference of the Rhino version is stored in the RhinoScriptEngineFactory. To get the RhinoScriptEngine, user should use following code : ``` java ScriptEngineManager manager = new ScriptEngineManager(); ScriptEngine scriptEngine...
Hi, The current implementation of ExternalScriptable doesn't handle properly Native Rhino Object when there declared in global scope. ``` javascript var FRUITS = 'apple orange banana'; var COLORS = 'red...
I am not sure why but at least with Java 8u40 + latest 1.1.1 rhino-script-engine, calling `ScriptEngine scriptEngine = ScriptEngineManager().getEngineByName("rhino");` throw a `java.lang.IllegalStateException: No engine "rhino" found`. The strange thing...