blob: 06feaa62ec4c5abf95b902d7bd51b4d98ad23492 [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-arraybuffer-length
description: >
Throws a TypeError if ArrayBuffer is called as a function.
info: |
ArrayBuffer( length )
ArrayBuffer called with argument length performs the following steps:
1. If NewTarget is undefined, throw a TypeError exception.
...
---*/
assert.throws(TypeError, function() {
ArrayBuffer();
});
assert.throws(TypeError, function() {
ArrayBuffer(10);
});