move JS's Hashtable to JS.O
[org.ibex.core.git] / src / org / ibex / core / Ibex.java
index 7b5f8b5..b44ba5a 100644 (file)
@@ -307,7 +307,7 @@ public final class Ibex extends JS implements JS.Cloneable {
         }
 
         public void startElement(XML.Element c) throws XML.Exn { try {
-                JS attrs = new JS();
+                JS attrs = new JS.O();
                 // FIXME attribute URIs? add an additional hash?
                 for(int i=0; i<c.getAttrLen(); i++) attrs.put(c.getAttrKey(i), c.getAttrVal(i));
                 startElement.call(c.getLocalName(), attrs, c.getUri(), null, 3);