summaryrefslogtreecommitdiff
path: root/test/built-ins/DataView/prototype/getBigUint64/this-is-not-object.js
blob: a60b3cca3ecf13e6ac288d1c388c06f692cb0fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (C) 2017 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-dataview.prototype.getbiguint64
description: Throws a TypeError if this is not Object
features: [DataView, ArrayBuffer, Symbol, BigInt, arrow-function]
---*/

var getBigUint64 = DataView.prototype.getBigUint64;

assert.throws(TypeError, () => getBigUint64.call(undefined),
              "undefined");

assert.throws(TypeError, () => getBigUint64.call(null), "null");

assert.throws(TypeError, () => getBigUint64.call(1), "1");

assert.throws(TypeError, () => getBigUint64.call("string"), "string");

assert.throws(TypeError, () => getBigUint64.call(true), "true");

assert.throws(TypeError, () => getBigUint64.call(false), "false");

var s = Symbol("1");
assert.throws(TypeError, () => getBigUint64.call(s), "symbol");