better JSArray.sort() exception handling
[org.ibex.core.git] / src / org / ibex / js / Test.java
index 621e08d..8e4be33 100644 (file)
@@ -59,7 +59,7 @@ public class Test extends JS {
     public JS callMethod(JS method, JS a0, JS a1, JS a2, JS[] rest, int nargs) throws JSExn {
         if(!JS.isString(method)) return null;
         if("print".equals(JS.toString(method))) {
-            System.out.println(JS.toString(a0));
+            System.out.println(JS.debugToString(a0));
             return null;
         }
         return null;