Home | History | Annotate | Download | only in Number

Lines Matching full:tostring

24     ECMA Section:       15.7.4.2.1 Number.prototype.toString()
27 given as an argument to the ToString operator; the resulting string value
33 The toString function is not generic; it generates a runtime error if its
45 writeHeaderToLog( SECTION + " Number.prototype.toString()");
52 array[item++] = new TestCase(SECTION, "o = new Object(); o.toString = Number.prototype.toString; o.toString()", "error", "o = new Object(); o.toString = Number.prototype.toString; o.toString()" );
53 // array[item++] = new TestCase(SECTION, "o = new String(); o.toString = Number.prototype.toString; o.toString()", "error", "o = new String(); o.toString = Number.prototype.toString; o.toString()" );
54 // array[item++] = new TestCase(SECTION, "o = 3; o.toString = Number.prototype.toString; o.toString()", "error", "o = 3; o.toString = Number.prototype.toString; o.toString()" );