1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_2/Exceptions/number-001.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,53 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 + 1.10 +/** 1.11 + File Name: number-001 1.12 + Corresponds To: 15.7.4.2-2-n.js 1.13 + ECMA Section: 15.7.4.2.2 Number.prototype.toString() 1.14 + Description: 1.15 + If the radix is the number 10 or not supplied, then this number value is 1.16 + given as an argument to the ToString operator; the resulting string value 1.17 + is returned. 1.18 + 1.19 + If the radix is supplied and is an integer from 2 to 36, but not 10, the 1.20 + result is a string, the choice of which is implementation dependent. 1.21 + 1.22 + The toString function is not generic; it generates a runtime error if its 1.23 + this value is not a Number object. Therefore it cannot be transferred to 1.24 + other kinds of objects for use as a method. 1.25 + 1.26 + Author: christine@netscape.com 1.27 + Date: 16 september 1997 1.28 +*/ 1.29 +var SECTION = "number-001"; 1.30 +var VERSION = "JS1_4"; 1.31 +var TITLE = "Exceptions for Number.toString()"; 1.32 + 1.33 +startTest(); 1.34 +writeHeaderToLog( SECTION + " Number.prototype.toString()"); 1.35 + 1.36 +var result = "Failed"; 1.37 +var exception = "No exception thrown"; 1.38 +var expect = "Passed"; 1.39 + 1.40 +try { 1.41 + object= new Object(); 1.42 + object.toString = Number.prototype.toString; 1.43 + result = object.toString(); 1.44 +} catch ( e ) { 1.45 + result = expect; 1.46 + exception = e.toString(); 1.47 +} 1.48 + 1.49 +new TestCase( 1.50 + SECTION, 1.51 + "object = new Object(); object.toString = Number.prototype.toString; object.toString()" + 1.52 + " (threw " + exception +")", 1.53 + expect, 1.54 + result ); 1.55 + 1.56 +test();