blob: da8a40f1e501e1e4d0d52deeed6df7b0b6222561 [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.some
es5id: 15.4.4.17-7-c-i-28
description: >
Array.prototype.some - element changed by getter on previous
iterations is observed on an Array
---*/
function callbackfn(val, idx, obj) {
if (idx === 1) {
return val === 12;
}
return false;
}
var arr = [];
var helpVerifyVar = 11;
Object.defineProperty(arr, "1", {
get: function () {
return helpVerifyVar;
},
set: function (args) {
helpVerifyVar = args;
},
configurable: true
});
Object.defineProperty(arr, "0", {
get: function () {
arr[1] = 12;
return 9;
},
configurable: true
});
assert(arr.some(callbackfn), 'arr.some(callbackfn) !== true');