From: adam Date: Sat, 3 Jul 2004 01:32:51 +0000 (+0000) Subject: quasi-temporary hack; reinstate coerceToString() X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=commitdiff_plain;h=240fe2c2a704b38c1ad7c312769b8f6d9daf8d5e quasi-temporary hack; reinstate coerceToString() darcs-hash:20040703013251-5007d-246d3247f40e69bdf26c69cb7d398001f1725887.gz --- diff --git a/src/org/ibex/js/JS.java b/src/org/ibex/js/JS.java index 7a78623..1e38ce5 100644 --- a/src/org/ibex/js/JS.java +++ b/src/org/ibex/js/JS.java @@ -131,9 +131,14 @@ public class JS extends org.ibex.util.BalancedTree { if((int)d == d) return Integer.toString((int)d); return o.toString(); } + if (o instanceof JS) return ((JS)o).coerceToString(); // HACK for now, this will probably go away throw new RuntimeException("can't coerce "+o+" [" + o.getClass().getName() + "] to type String."); } + public String coerceToString() { + throw new RuntimeException("can't coerce "+this+" [" + getClass().getName() + "] to type String."); + } + // Instance Methods //////////////////////////////////////////////////////////////////// public static final Integer ZERO = new Integer(0);