| File Name: boolean-001.js |
| Description: Corresponds to ecma/Boolean/15.6.4.2-4-n.js |
| The toString function is not generic; it generates |
| a runtime error if its this value is not a Boolean |
| object. Therefore it cannot be transferred to other |
| kinds of objects for use as a method. |
| Author: christine@netscape.com |
| var SECTION = "boolean-001.js"; |
| var TITLE = "Boolean.prototype.toString()"; |
| writeHeaderToLog( SECTION +" "+ TITLE ); |
| var testcases = new Array(); |
| var exception = "No exception thrown"; |
| var TO_STRING = Boolean.prototype.toString; |
| var s = new String("Not a Boolean"); |
| exception = e.toString(); |
| testcases[tc++] = new TestCase( |
| "Assigning Boolean.prototype.toString to a String object "+ |
| "(threw " +exception +")", |