blob: fc76d36ed674a8fc76180c1f02d83ae4c8ef05d5 [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.fill
es6id: 22.1.3.6
description: >
Return abrupt from ToObject(this value).
info: |
22.1.3.6 Array.prototype.fill (value [ , start [ , end ] ] )
1. Let O be ToObject(this value).
2. ReturnIfAbrupt(O).
---*/
assert.throws(TypeError, function() {
Array.prototype.fill.call(undefined, 1);
});
assert.throws(TypeError, function() {
Array.prototype.fill.call(null, 1);
});