X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fjs%2FJSArray.java;h=e8529c6d1b9b215eb8231a0a87f0afceb8ddffd0;hb=a6fb49b55117ea4cf330b412d2a2fff403fcd053;hp=993e057317f59ff8aa2e97c3e5c587d9a58012d3;hpb=55be062f7146f8ca2899e1234e4546a0756520ee;p=org.ibex.js.git diff --git a/src/org/ibex/js/JSArray.java b/src/org/ibex/js/JSArray.java index 993e057..e8529c6 100644 --- a/src/org/ibex/js/JSArray.java +++ b/src/org/ibex/js/JSArray.java @@ -12,10 +12,10 @@ public class JSArray extends Basket.Array implements JS, Basket.CompareFunc { private static final JS.Method METHOD = new JS.Method(); private static final String[] empty = new String[0]; - JSArray() { } - JSArray(int size) { super(size); } - JSArray(JS[] args) { super(args.length); addAll(args); } - JSArray(JS arg) { super(1); add(arg); } + public JSArray() { } + public JSArray(int size) { super(size); } + public JSArray(JS[] args) { super(args.length); addAll(args); } + public JSArray(JS arg) { super(1); add(arg); } public JS unclone() { return this; } public JS.Enumeration keys() throws JSExn { @@ -51,15 +51,14 @@ public class JSArray extends Basket.Array implements JS, Basket.CompareFunc { "arrays only support positive integer keys, can not use: "+JSU.str(key)); int i = ((JSNumber.I)key).toInt(); if (i < 0) throw new JSExn("arrays can not use negative integer keys "+i); - size(i + 1); while (size() < i) add(null); + if (size() < i+1) size(i + 1); + //while (size() < i) add(null); set(i, val); } public String[] getFormalArgs() { return empty; } - public String coerceToString() { return "array"; } // FIXME + public String coerceToString() throws JSExn { throw new JSExn("cannot coerce a "+getClass().getName()+" to a string"); } - public Object run(Object o) throws JSExn { return call(null, null); } - public void pause() throws NotPausableException { throw new NotPausableException(); } public JS call(JS method, JS[] args) throws JSExn { //#switch(JSU.str(method)) case "pop": return size() == 0 ? null : (JS)remove(size() - 1); @@ -87,9 +86,9 @@ public class JSArray extends Basket.Array implements JS, Basket.CompareFunc { public void addTrap(JS k, JS f) throws JSExn { throw new JSExn("arrays do not support traps"); } public void delTrap(JS k, JS f) throws JSExn { throw new JSExn("arrays do not support traps"); } - public JS.Trap getTrap(JS k) throws JSExn { throw new JSExn("arrays do not support traps"); } + public JS.Trap getTrap(JS k) throws JSExn { return null; } - /** FIXME: move to specialised ArrayStore superclass. */ + /** FEATURE: move to specialised ArrayStore superclass. */ public void addAll(JS[] entries) { for (int i=0; i < entries.length; i++) add(entries[i]); } public void setSize(int newSize) { @@ -124,7 +123,7 @@ public class JSArray extends Basket.Array implements JS, Basket.CompareFunc { if(start > length) start = length; if(end > length) end = length; JSArray a = new JSArray(end-start); - for(int i=0;i 0) { setSize(newLength);