blob: e7567673219b5de30489a778bb2ef2c55f3068fb [file] [log] [blame]
// Copyright 2014 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Array.prototype.splice sets `length` on `this`
esid: sec-array.prototype.splice
es5id: 15.4.4.12_A6.1_T2
description: Array.prototype.splice throws if `length` is read-only
---*/
var a = [0, 1, 2];
Object.defineProperty(a, 'length', {
writable: false
});
assert.throws(TypeError, function() {
a.splice(1, 2, 4);
});