more new js api fixes and cleanup
[org.ibex.core.git] / src / org / ibex / js / JSNumber.java
index 16c6836..8137cbc 100644 (file)
@@ -27,8 +27,7 @@ abstract class JSNumber extends JSPrimitive {
     boolean toBoolean() { return toInt() != 0; }
     double toDouble() { return toLong(); }
     float toFloat() { return (float) toDouble(); }
-    // FIXME: Number functions
-
+    
     final static class I extends JSNumber {
         final int i;
         I(int i) { this.i = i; }