blob: 739bc0a090e442efe977cedfe2a5bf9ca1ad9416 [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 - exception in getter terminates iteration
on an Array-like object
---*/
var accessed = false;
var testResult = false;
function callbackfn(prevVal, curVal, idx, obj) {
if (idx >= 1) {
accessed = true;
testResult = (prevVal === 0);
}
}
var obj = {
2: 2,
1: 1,
length: 3
};
Object.defineProperty(obj, "0", {
get: function() {
throw new RangeError("unhandle exception happened in getter");
},
configurable: true
});
assert.throws(RangeError, function() {
Array.prototype.reduce.call(obj, callbackfn);
});
assert.sameValue(accessed, false, 'accessed');
assert.sameValue(testResult, false, 'testResult');