summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/DataView/prototype/getBigUint64/this-is-not-object.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/DataView/prototype/getBigUint64/this-is-not-object.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/DataView/prototype/getBigUint64/this-is-not-object.js b/js/src/tests/test262/built-ins/DataView/prototype/getBigUint64/this-is-not-object.js
new file mode 100644
index 0000000000..f9e4922f05
--- /dev/null
+++ b/js/src/tests/test262/built-ins/DataView/prototype/getBigUint64/this-is-not-object.js
@@ -0,0 +1,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);