fixed bug 403, added logging to tcp and email
[org.ibex.core.git] / src / org / ibex / js / JS.java
index 378e125..9aa5606 100644 (file)
@@ -9,6 +9,8 @@ import java.util.*;
 /** The minimum set of functionality required for objects which are manipulated by JavaScript */
 public class JS extends org.ibex.util.BalancedTree { 
 
+    public static boolean checkAssertions = false;
+
     public static final Object METHOD = new Object();
     public final JS unclone() { return _unclone(); }
     public Enumeration keys() throws JSExn { return entries == null ? emptyEnumeration : entries.keys(); }