--- a/nashorn/.hgignore Tue May 21 10:17:09 2013 -0300
+++ b/nashorn/.hgignore Wed May 22 16:39:48 2013 +0530
@@ -24,3 +24,4 @@
.idea/*
test/lib/testng.jar
test/script/external/*
+.project
--- a/nashorn/src/jdk/nashorn/internal/runtime/ScriptEnvironment.java Tue May 21 10:17:09 2013 -0300
+++ b/nashorn/src/jdk/nashorn/internal/runtime/ScriptEnvironment.java Wed May 22 16:39:48 2013 +0530
@@ -186,7 +186,7 @@
* @param out output print writer
* @param err error print writer
*/
- ScriptEnvironment(final Options options, final PrintWriter out, final PrintWriter err) {
+ public ScriptEnvironment(final Options options, final PrintWriter out, final PrintWriter err) {
this.out = out;
this.err = err;
this.namespace = new Namespace();