blob: c2710fe8b3c5e6fbf57f65bb5f4dd8a3e81977e3 [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.reduceright
description: >
Array.prototype.reduceRight - number primitive can be used as
accumulator
---*/
var accessed = false;
function callbackfn(prevVal, curVal, idx, obj) {
accessed = true;
return prevVal === 12;
}
var obj = {
0: 11,
length: 1
};
assert.sameValue(Array.prototype.reduceRight.call(obj, callbackfn, 12), true, 'Array.prototype.reduceRight.call(obj, callbackfn, 12)');
assert(accessed, 'accessed !== true');