moved ProxyAutoConfig.java from org.ibex.net.HTTP to this package
[org.ibex.js.git] / src / org / ibex / js / JSDate.java
index 19e4fc6..8d267d2 100644 (file)
@@ -890,6 +890,12 @@ public class JSDate extends JS.Immutable {
     private static double _toNumber(JS o) throws JSExn { return JSU.toDouble(o); }
     private static double _toNumber(JS[] o, int index) throws JSExn { return JSU.toDouble(o[index]); }
 
+    public JSDate(long l) throws JSExn {
+        this.date = (double)l;
+        thisTimeZone = java.util.TimeZone.getDefault();
+        LocalTZA = thisTimeZone.getRawOffset();
+    }
+
     public JSDate(JS[] args) throws JSExn {
 
         JSDate obj = this;