2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / NumberObject.cs
index 31c5030370cf73edf6db8814f7bfb5d106dcc78a..f15039718155610e5694c211891748719c2cf7f3 100644 (file)
@@ -32,10 +32,21 @@ using System;
 namespace Microsoft.JScript {
        
        public class NumberObject : JSObject {
+               
+               double value;
+
+               internal NumberObject ()
+               {
+               }
+
+               internal NumberObject (object value)
+               {
+                       throw new NotImplementedException ();
+               }
 
                public new Type GetType ()
                {
                        throw new NotImplementedException ();
                }
        }
-}
\ No newline at end of file
+}