summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/every/BigInt
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/every/BigInt')
-rw-r--r--test/built-ins/TypedArray/prototype/every/BigInt/invoked-as-func.js29
-rw-r--r--test/built-ins/TypedArray/prototype/every/BigInt/invoked-as-method.js29
-rw-r--r--test/built-ins/TypedArray/prototype/every/BigInt/length.js30
-rw-r--r--test/built-ins/TypedArray/prototype/every/BigInt/name.js27
-rw-r--r--test/built-ins/TypedArray/prototype/every/BigInt/prop-desc.js19
-rw-r--r--test/built-ins/TypedArray/prototype/every/BigInt/this-is-not-object.js51
-rw-r--r--test/built-ins/TypedArray/prototype/every/BigInt/this-is-not-typedarray-instance.js43
7 files changed, 0 insertions, 228 deletions
diff --git a/test/built-ins/TypedArray/prototype/every/BigInt/invoked-as-func.js b/test/built-ins/TypedArray/prototype/every/BigInt/invoked-as-func.js
deleted file mode 100644
index 83d64511c..000000000
--- a/test/built-ins/TypedArray/prototype/every/BigInt/invoked-as-func.js
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (C) 2016 the V8 project authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-/*---
-esid: sec-%typedarray%.prototype.every
-description: Throws a TypeError exception when invoked as a function
-info: |
- 22.2.3.7 %TypedArray%.prototype.every ( callbackfn [ , thisArg ] )
-
- This function is not generic. ValidateTypedArray is applied to the this value
- prior to evaluating the algorithm. If its result is an abrupt completion that
- exception is thrown instead of evaluating the algorithm.
-
- 22.2.3.5.1 Runtime Semantics: ValidateTypedArray ( O )
-
- 1. If Type(O) is not Object, throw a TypeError exception.
- 2. If O does not have a [[TypedArrayName]] internal slot, throw a TypeError
- exception.
- ...
-includes: [testBigIntTypedArray.js]
-features: [BigInt, TypedArray]
----*/
-
-var every = TypedArray.prototype.every;
-
-assert.sameValue(typeof every, 'function');
-
-assert.throws(TypeError, function() {
- every();
-});
diff --git a/test/built-ins/TypedArray/prototype/every/BigInt/invoked-as-method.js b/test/built-ins/TypedArray/prototype/every/BigInt/invoked-as-method.js
deleted file mode 100644
index 2b99d4c68..000000000
--- a/test/built-ins/TypedArray/prototype/every/BigInt/invoked-as-method.js
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (C) 2016 the V8 project authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-/*---
-esid: sec-%typedarray%.prototype.every
-description: Requires a [[TypedArrayName]] internal slot.
-info: |
- 22.2.3.7 %TypedArray%.prototype.every ( callbackfn [ , thisArg ] )
-
- This function is not generic. ValidateTypedArray is applied to the this value
- prior to evaluating the algorithm. If its result is an abrupt completion that
- exception is thrown instead of evaluating the algorithm.
-
- 22.2.3.5.1 Runtime Semantics: ValidateTypedArray ( O )
-
- 1. If Type(O) is not Object, throw a TypeError exception.
- 2. If O does not have a [[TypedArrayName]] internal slot, throw a TypeError
- exception.
- ...
-includes: [testBigIntTypedArray.js]
-features: [BigInt, TypedArray]
----*/
-
-var TypedArrayPrototype = TypedArray.prototype;
-
-assert.sameValue(typeof TypedArrayPrototype.every, 'function');
-
-assert.throws(TypeError, function() {
- TypedArrayPrototype.every();
-});
diff --git a/test/built-ins/TypedArray/prototype/every/BigInt/length.js b/test/built-ins/TypedArray/prototype/every/BigInt/length.js
deleted file mode 100644
index cbe40ceaa..000000000
--- a/test/built-ins/TypedArray/prototype/every/BigInt/length.js
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (C) 2015 André Bargull. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/*---
-esid: sec-%typedarray%.prototype.every
-description: >
- %TypedArray%.prototype.every.length is 1.
-info: |
- %TypedArray%.prototype.every ( callbackfn [ , thisArg ] )
-
- 17 ECMAScript Standard Built-in Objects:
- Every built-in Function object, including constructors, has a length
- property whose value is an integer. Unless otherwise specified, this
- value is equal to the largest number of named arguments shown in the
- subclause headings for the function description, including optional
- parameters. However, rest parameters shown using the form “...name”
- are not included in the default argument count.
-
- Unless otherwise specified, the length property of a built-in Function
- object has the attributes { [[Writable]]: false, [[Enumerable]]: false,
- [[Configurable]]: true }.
-includes: [propertyHelper.js, testBigIntTypedArray.js]
-features: [BigInt, TypedArray]
----*/
-
-assert.sameValue(TypedArray.prototype.every.length, 1);
-
-verifyNotEnumerable(TypedArray.prototype.every, "length");
-verifyNotWritable(TypedArray.prototype.every, "length");
-verifyConfigurable(TypedArray.prototype.every, "length");
diff --git a/test/built-ins/TypedArray/prototype/every/BigInt/name.js b/test/built-ins/TypedArray/prototype/every/BigInt/name.js
deleted file mode 100644
index c7fb7d764..000000000
--- a/test/built-ins/TypedArray/prototype/every/BigInt/name.js
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (C) 2015 André Bargull. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/*---
-esid: sec-%typedarray%.prototype.every
-description: >
- %TypedArray%.prototype.every.name is "every".
-info: |
- %TypedArray%.prototype.every ( callbackfn [ , thisArg ] )
-
- 17 ECMAScript Standard Built-in Objects:
- Every built-in Function object, including constructors, that is not
- identified as an anonymous function has a name property whose value
- is a String.
-
- Unless otherwise specified, the name property of a built-in Function
- object, if it exists, has the attributes { [[Writable]]: false,
- [[Enumerable]]: false, [[Configurable]]: true }.
-includes: [propertyHelper.js, testBigIntTypedArray.js]
-features: [BigInt, TypedArray]
----*/
-
-assert.sameValue(TypedArray.prototype.every.name, "every");
-
-verifyNotEnumerable(TypedArray.prototype.every, "name");
-verifyNotWritable(TypedArray.prototype.every, "name");
-verifyConfigurable(TypedArray.prototype.every, "name");
diff --git a/test/built-ins/TypedArray/prototype/every/BigInt/prop-desc.js b/test/built-ins/TypedArray/prototype/every/BigInt/prop-desc.js
deleted file mode 100644
index d1c570ca1..000000000
--- a/test/built-ins/TypedArray/prototype/every/BigInt/prop-desc.js
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (C) 2016 the V8 project authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-/*---
-esid: sec-%typedarray%.prototype.every
-description: >
- "every" property of TypedArrayPrototype
-info: |
- ES6 section 17: Every other data property described in clauses 18 through 26
- and in Annex B.2 has the attributes { [[Writable]]: true,
- [[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified.
-includes: [propertyHelper.js, testBigIntTypedArray.js]
-features: [BigInt, TypedArray]
----*/
-
-var TypedArrayPrototype = TypedArray.prototype;
-
-verifyNotEnumerable(TypedArrayPrototype, 'every');
-verifyWritable(TypedArrayPrototype, 'every');
-verifyConfigurable(TypedArrayPrototype, 'every');
diff --git a/test/built-ins/TypedArray/prototype/every/BigInt/this-is-not-object.js b/test/built-ins/TypedArray/prototype/every/BigInt/this-is-not-object.js
deleted file mode 100644
index af9557ea0..000000000
--- a/test/built-ins/TypedArray/prototype/every/BigInt/this-is-not-object.js
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright (C) 2016 the V8 project authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-/*---
-esid: sec-%typedarray%.prototype.every
-description: Throws a TypeError exception when `this` is not Object
-info: |
- 22.2.3.7 %TypedArray%.prototype.every ( callbackfn [ , thisArg ] )
-
- This function is not generic. ValidateTypedArray is applied to the this value
- prior to evaluating the algorithm. If its result is an abrupt completion that
- exception is thrown instead of evaluating the algorithm.
-
- 22.2.3.5.1 Runtime Semantics: ValidateTypedArray ( O )
-
- 1. If Type(O) is not Object, throw a TypeError exception.
- ...
-includes: [testBigIntTypedArray.js]
-features: [BigInt, Symbol, TypedArray]
----*/
-
-var every = TypedArray.prototype.every;
-var callbackfn = function() {};
-
-assert.throws(TypeError, function() {
- every.call(undefined, callbackfn);
-}, "this is undefined");
-
-assert.throws(TypeError, function() {
- every.call(null, callbackfn);
-}, "this is null");
-
-assert.throws(TypeError, function() {
- every.call(42, callbackfn);
-}, "this is 42");
-
-assert.throws(TypeError, function() {
- every.call("1", callbackfn);
-}, "this is a string");
-
-assert.throws(TypeError, function() {
- every.call(true, callbackfn);
-}, "this is true");
-
-assert.throws(TypeError, function() {
- every.call(false, callbackfn);
-}, "this is false");
-
-var s = Symbol("s");
-assert.throws(TypeError, function() {
- every.call(s, callbackfn);
-}, "this is a Symbol");
diff --git a/test/built-ins/TypedArray/prototype/every/BigInt/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/every/BigInt/this-is-not-typedarray-instance.js
deleted file mode 100644
index 21ff576b5..000000000
--- a/test/built-ins/TypedArray/prototype/every/BigInt/this-is-not-typedarray-instance.js
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright (C) 2016 the V8 project authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-/*---
-esid: sec-%typedarray%.prototype.every
-description: >
- Throws a TypeError exception when `this` is not a TypedArray instance
-info: |
- 22.2.3.7 %TypedArray%.prototype.every ( callbackfn [ , thisArg ] )
-
- This function is not generic. ValidateTypedArray is applied to the this value
- prior to evaluating the algorithm. If its result is an abrupt completion that
- exception is thrown instead of evaluating the algorithm.
-
- 22.2.3.5.1 Runtime Semantics: ValidateTypedArray ( O )
-
- 1. If Type(O) is not Object, throw a TypeError exception.
- 2. If O does not have a [[TypedArrayName]] internal slot, throw a TypeError
- exception.
- ...
-includes: [testBigIntTypedArray.js]
-features: [BigInt, TypedArray]
----*/
-
-var every = TypedArray.prototype.every;
-var callbackfn = function() {};
-
-assert.throws(TypeError, function() {
- every.call({}, callbackfn);
-}, "this is an Object");
-
-assert.throws(TypeError, function() {
- every.call([], callbackfn);
-}, "this is an Array");
-
-var ab = new ArrayBuffer(8);
-assert.throws(TypeError, function() {
- every.call(ab, callbackfn);
-}, "this is an ArrayBuffer instance");
-
-var dv = new DataView(new ArrayBuffer(8), 0, 1);
-assert.throws(TypeError, function() {
- every.call(dv, callbackfn);
-}, "this is a DataView instance");