blob: baece98a13e609b9e1a8f10004bfe317d4ab1df7 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.reduce
description: >
Array.prototype.reduce - element to be retrieved is inherited
accessor property on an Array
---*/
var testResult = false;
function callbackfn(prevVal, curVal, idx, obj) {
if (idx === 1) {
testResult = (prevVal === 0);
}
}
Object.defineProperty(Array.prototype, "0", {
get: function() {
return 0;
},
configurable: true
});
var arr = [, 1, 2];
arr.reduce(callbackfn);
assert(testResult, 'testResult !== true');