blob: 5cb996d32b005d7a9433496c7b50fa8c2e14e530 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: |
The value of the internal [[Prototype]] property of
the Array constructor is the Function prototype object
es5id: 15.4.3_A1.1_T2
description: Function.prototype.toString = Object.prototype.toString
---*/
Function.prototype.toString = Object.prototype.toString;
assert.sameValue(
Array.toString(),
"[object Function]",
'Array.toString() must return "[object Function]"'
);