blob: b26d38c22d37a0b963fd6fd00139c44e8f015716 [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-dataview.prototype.setint32
description: >
RangeError exception for negative or non-integral index is thrown before
the value conversion.
info: |
...
3. Return SetViewValue(v, byteOffset, littleEndian, "Int32", value).
24.2.1.2 SetViewValue ( view, requestIndex, isLittleEndian, type, value )
...
4. Let getIndex be ? ToIndex(requestIndex).
...
---*/
var dataView = new DataView(new ArrayBuffer(8), 0);
var poisoned = {
valueOf: function() {
throw new Test262Error("valueOf called");
}
};
assert.throws(RangeError, function() {
dataView.setInt32(-1.5, poisoned);
}, "setInt32(-1.5, poisoned)");
assert.throws(RangeError, function() {
dataView.setInt32(-1, poisoned);
}, "setInt32(-1, poisoned)");
assert.throws(RangeError, function() {
dataView.setInt32(-Infinity, poisoned);
}, "setInt32(-Infinity, poisoned)");
assert.throws(RangeError, function() {
dataView.setInt32(Infinity, poisoned);
}, "setInt32(Infinity, poisoned)");