add ctr's
authorCésar Natarén <cesar@mono-cvs.ximian.com>
Thu, 6 Jan 2005 18:31:02 +0000 (18:31 -0000)
committerCésar Natarén <cesar@mono-cvs.ximian.com>
Thu, 6 Jan 2005 18:31:02 +0000 (18:31 -0000)
svn path=/trunk/mcs/; revision=38448

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
+}