This commit is contained in:
norris%netscape.com 1999-09-17 06:12:45 +00:00
Родитель 60c5cbcb99
Коммит 14eadb66ef
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -30,10 +30,10 @@ public class RunScript2 {
Context cx = Context.enter();
Scriptable scope = cx.initStandardObjects(null);
// Add a global variable "args" that is a JavaScript reflection
// of the Java arguments
Scriptable jsArgs = Context.toObject(args, scope);
scope.put("args", scope, jsArgs);
// Add a global variable "out" that is a JavaScript reflection
// of System.out
Scriptable jsArgs = Context.toObject(System.out, scope);
scope.put("out", scope, jsArgs);
String s = "";
for (int i=0; i < args.length; i++)