fixes and additions to new js api
[org.ibex.core.git] / src / org / ibex / js / JS.java
index f9bd66b..4928101 100644 (file)
@@ -72,6 +72,12 @@ public abstract class JS {
         public final int indexNode(Object o) { return bt().indexNode(o); }
     }
     
+    // FEATURE: JS.StringKeys
+    /* public static StringKeys extends JS {
+        public JS get(JS key) { return JS.isString(key) ? get(JS.toString(key) : null; }
+        ...
+    */
+    
     JS _unclone() { return this; }
     
     public interface Cloneable { }