2003/06/16 08:44:09
[org.ibex.core.git] / src / org / xwt / js / Math.java
index 599c4f5..eedfee5 100644 (file)
@@ -6,10 +6,11 @@ import java.io.*;
 import java.util.*;
 
 /** The JavaScript Math object */
-public class Math extends JS.Obj {
+class Math extends JS.Obj {
     public static Math singleton = new Math();
-    private Math() { setSeal(true); }
+    Math() { setSeal(true); }
 
+    // FIXME: clean up, finish implementing
     public Object get(Object name) {
         if ("ceil".equals(name)) return new JS.Callable() { public Object call(JS.Array args)
                 { if (args.elementAt(0) == null) return null;