From: César Natarén Date: Thu, 26 Aug 2004 05:53:32 +0000 (-0000) Subject: marked as built in X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=499a0e447f79b3ac44a34431d1cf5876d4383db7;p=mono.git marked as built in svn path=/trunk/mcs/; revision=32864 --- diff --git a/mcs/class/Microsoft.JScript/Microsoft.JScript/NumberPrototype.cs b/mcs/class/Microsoft.JScript/Microsoft.JScript/NumberPrototype.cs index b272d2ed7ce..0a0554068b8 100644 --- a/mcs/class/Microsoft.JScript/Microsoft.JScript/NumberPrototype.cs +++ b/mcs/class/Microsoft.JScript/Microsoft.JScript/NumberPrototype.cs @@ -28,50 +28,50 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -namespace Microsoft.JScript.Tmp -{ - using System; +using System; + +namespace Microsoft.JScript { + + public class NumberPrototype : NumberObject { - public class NumberPrototype : NumberObject - { public static NumberConstructor constructor { get { throw new NotImplementedException (); } } - + [JSFunctionAttribute (JSFunctionAttributeEnum.HasThisObject, JSBuiltin.Number_toExponential)] public static string toExponential (object thisObj, object fractionDigits) { throw new NotImplementedException (); } - + [JSFunctionAttribute (JSFunctionAttributeEnum.HasThisObject, JSBuiltin.Number_toFixed)] public static string toFixed (object thisObj, double fractionDigits) { throw new NotImplementedException (); } - - public static string toLocalString (object thisObj) + [JSFunctionAttribute (JSFunctionAttributeEnum.HasThisObject, JSBuiltin.Number_toLocaleString)] + public static string toLocaleString (object thisObj) { throw new NotImplementedException (); } - + [JSFunctionAttribute (JSFunctionAttributeEnum.HasThisObject, JSBuiltin.Number_toPrecision)] public static string toPrecision (object thisObj, object precision) { throw new NotImplementedException (); } - + [JSFunctionAttribute (JSFunctionAttributeEnum.HasThisObject, JSBuiltin.Number_toString)] public static string toString (object thisObj, object radix) { throw new NotImplementedException (); } - + [JSFunctionAttribute (JSFunctionAttributeEnum.HasThisObject, JSBuiltin.Number_valueOf)] public static object valueOf (object thisObj) { throw new NotImplementedException (); } } -} \ No newline at end of file +}