2003/06/18 07:39:21
authormegacz <megacz@xwt.org>
Fri, 30 Jan 2004 07:02:00 +0000 (07:02 +0000)
committermegacz <megacz@xwt.org>
Fri, 30 Jan 2004 07:02:00 +0000 (07:02 +0000)
darcs-hash:20040130070200-2ba56-c8405cb3a8234e234b4b6ecca5e8d42c2a005178.gz

Makefile
src/org/xwt/js/ArrayImpl.java

index 300f032..c55a2db 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -161,10 +161,6 @@ $(java_headers): bin/%.h: bin/%.class
                sed s_/_._g | sed s/.class$$// | sed s/.java$$// |\
                        xargs $(gcjh) --classpath .
 
                sed s_/_._g | sed s/.class$$// | sed s/.java$$// |\
                        xargs $(gcjh) --classpath .
 
-bin-$(platform)/org/xwt/js/CompiledFunctionImpl.java.o: src/org/xwt/js/CompiledFunctionImpl.java
-       touch $@
-#      $(gcj) -c bin/org/xwt/js/CompiledFunctionImpl*.class -o $@
-
 $(java_objects): bin-$(platform)/%.java.o: src/%.java
        @echo "compiling   .java -> .o:     $<"
        mkdir -p `dirname $@`
 $(java_objects): bin-$(platform)/%.java.o: src/%.java
        @echo "compiling   .java -> .o:     $<"
        mkdir -p `dirname $@`
index c4e4bf6..40bc873 100644 (file)
@@ -38,7 +38,7 @@ class ArrayImpl extends JS.Obj {
         }
     }
     // we use _put instead of put solely to work around a GCJ bug
         }
     }
     // we use _put instead of put solely to work around a GCJ bug
-    public void put(Object key, Object val) {
+    public void _put(Object key, Object val) {
         if (key.equals("length")) vec.setSize(toNumber(val).intValue());
         int i = intVal(key);
         if (i == Integer.MIN_VALUE) super.put(key, val);
         if (key.equals("length")) vec.setSize(toNumber(val).intValue());
         int i = intVal(key);
         if (i == Integer.MIN_VALUE) super.put(key, val);