blob: b0af8fb623b865df1f5b5fb24b1f5a3e60c26dae [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.foreach
description: >
Array.prototype.forEach - element changed by getter on previous
iterations is observed on an Array
---*/
var preIterVisible = false;
var arr = [];
var testResult = false;
function callbackfn(val, idx, obj) {
if (idx === 1) {
testResult = (val === 9);
}
}
Object.defineProperty(arr, "0", {
get: function() {
preIterVisible = true;
return 11;
},
configurable: true
});
Object.defineProperty(arr, "1", {
get: function() {
if (preIterVisible) {
return 9;
} else {
return 13;
}
},
configurable: true
});
arr.forEach(callbackfn);
assert(testResult, 'testResult !== true');