remove more Pausable stuff
[org.ibex.js.git] / src / org / ibex / js / JSArray.java
index 993e057..dd2aecd 100644 (file)
@@ -58,8 +58,6 @@ public class JSArray extends Basket.Array implements JS, Basket.CompareFunc {
     public String[] getFormalArgs() { return empty; }
     public String coerceToString() { return "array"; } // FIXME
 
-    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);