blob: c3f5fd8e18886b027d610fb45d9758a9efb82962 [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
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);
});