blob: 30381433b86c0ef98fec23e094cf1b97df6edba9 [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.indexof
es5id: 15.4.4.14-5-29
description: >
Array.prototype.indexOf - side effects produced by step 2 are
visible when an exception occurs
---*/
var stepFiveOccurs = false;
var obj = {};
Object.defineProperty(obj, "length", {
get: function () {
throw new RangeError();
},
configurable: true
});
var fromIndex = {
valueOf: function () {
stepFiveOccurs = true;
return 0;
}
};
assert.throws(RangeError, function() {
Array.prototype.indexOf.call(obj, undefined, fromIndex);
});
assert.sameValue(stepFiveOccurs, false, 'stepFiveOccurs');