expose debug string conversion function
authorcrawshaw <crawshaw@ibex.org>
Fri, 7 Jan 2005 20:04:30 +0000 (20:04 +0000)
committercrawshaw <crawshaw@ibex.org>
Fri, 7 Jan 2005 20:04:30 +0000 (20:04 +0000)
darcs-hash:20050107200430-2eb37-9a567eb721cc5da39bf82a05e0d2f3a1f46610c5.gz

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(); }
     }