| File Name: boolean-001.js |
| Description: Corresponds to ecma/Boolean/15.6.4.3-4-n.js |
| 15.6.4.3 Boolean.prototype.valueOf() |
| Returns this boolean value. |
| The valueOf 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-002.js"; |
| var TITLE = "Boolean.prototype.valueOf()"; |
| writeHeaderToLog( SECTION +" "+ TITLE ); |
| var testcases = new Array(); |
| var exception = "No exception thrown"; |
| var VALUE_OF = Boolean.prototype.valueOf; |
| var s = new String("Not a Boolean"); |
| exception = e.toString(); |
| testcases[tc++] = new TestCase( |
| "Assigning Boolean.prototype.valueOf to a String object "+ |
| "(threw " +exception +")", |