blob: e72ab8ef7017fcae1c44ff71776b9293ca7291cf [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 - side-effects produced by step 2 when
an exception occurs
---*/
var obj = {
0: 11,
1: 12
};
var accessed = false;
Object.defineProperty(obj, "length", {
get: function() {
accessed = true;
return 0;
},
configurable: true
});
assert.throws(TypeError, function() {
Array.prototype.reduceRight.call(obj, function() {});
});
assert(accessed, 'accessed !== true');