blob: e39f17ad8c1669f4d4e49417edc03916dbaba7de [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
description: Array.prototype.splice throws if `length` is read-only
---*/
var a = {
get length() {
return 0;
},
splice: Array.prototype.splice
};
try {
a.splice(1, 2, 4);
$ERROR("Expected a TypeError");
} catch (e) {
if (!(e instanceof TypeError)) {
throw e;
}
}