| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| The [[Prototype]] property of the newly constructed object |
| is set to the original Array prototype object, the one that |
| is the initial value of Array.prototype |
| description: Array.prototype.toString = Object.prototype.toString |
| Array.prototype.toString = Object.prototype.toString; |
| if (x.toString() !== "[object " + "Array" + "]") { |
| $ERROR('#1: Array.prototype.toString = Object.prototype.toString; var x = Array(); x.toString() === "[object " + "Array" + "]". Actual: ' + (x.toString())); |
| Array.prototype.toString = Object.prototype.toString; |
| if (x.toString() !== "[object " + "Array" + "]") { |
| $ERROR('#2: Array.prototype.toString = Object.prototype.toString; var x = Array(0,1,2); x.toString() === "[object " + "Array" + "]". Actual: ' + (x.toString())); |