expose debug string conversion function
[org.ibex.js.git] / src / org / ibex / js / JSU.java
index 3954b45..a20d075 100644 (file)
@@ -104,7 +104,7 @@ public class JSU {
     }
 
     /** Internal method for coercing to String without throwing a JSExn. */
-    static String str(JS o) {
+    public static String str(JS o) {
         try { return toString(o); }
         catch(JSExn e) { return o.toString(); }
     }