summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/DataView/prototype/getBigUint64/this-is-not-object.js
blob: f9e4922f051530219cfe73fc2c0de87baf9d9dbd (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
27
28
// 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");

reportCompare(0, 0);