summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/filter/BigInt
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/filter/BigInt')
-rw-r--r--test/built-ins/TypedArray/prototype/filter/BigInt/invoked-as-func.js30
-rw-r--r--test/built-ins/TypedArray/prototype/filter/BigInt/invoked-as-method.js30
-rw-r--r--test/built-ins/TypedArray/prototype/filter/BigInt/length.js30
-rw-r--r--test/built-ins/TypedArray/prototype/filter/BigInt/name.js27
-rw-r--r--test/built-ins/TypedArray/prototype/filter/BigInt/prop-desc.js19
-rw-r--r--test/built-ins/TypedArray/prototype/filter/BigInt/this-is-not-object.js53
-rw-r--r--test/built-ins/TypedArray/prototype/filter/BigInt/this-is-not-typedarray-instance.js45
7 files changed, 0 insertions, 234 deletions
diff --git a/test/built-ins/TypedArray/prototype/filter/BigInt/invoked-as-func.js b/test/built-ins/TypedArray/prototype/filter/BigInt/invoked-as-func.js
deleted file mode 100644
index 92e9758b5..000000000
--- a/test/built-ins/TypedArray/prototype/filter/BigInt/invoked-as-func.js
+++ /dev/null
@@ -1,30 +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.filter
-description: Throws a TypeError exception when invoked as a function
-info: |
- 22.2.3.9 %TypedArray%.prototype.filter ( callbackfn [ , thisArg ] )
-
- 1. Let O be the this value.
- 2. Let valid be ValidateTypedArray(O).
- 3. ReturnIfAbrupt(valid).
- ...
-
- 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 filter = TypedArray.prototype.filter;
-
-assert.sameValue(typeof filter, 'function');
-
-assert.throws(TypeError, function() {
- filter();
-});
diff --git a/test/built-ins/TypedArray/prototype/filter/BigInt/invoked-as-method.js b/test/built-ins/TypedArray/prototype/filter/BigInt/invoked-as-method.js
deleted file mode 100644
index 18c818b65..000000000
--- a/test/built-ins/TypedArray/prototype/filter/BigInt/invoked-as-method.js
+++ /dev/null
@@ -1,30 +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.filter
-description: Requires a [[TypedArrayName]] internal slot.
-info: |
- 22.2.3.9 %TypedArray%.prototype.filter ( callbackfn [ , thisArg ] )
-
- 1. Let O be the this value.
- 2. Let valid be ValidateTypedArray(O).
- 3. ReturnIfAbrupt(valid).
- ...
-
- 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.filter, 'function');
-
-assert.throws(TypeError, function() {
- TypedArrayPrototype.filter();
-});
diff --git a/test/built-ins/TypedArray/prototype/filter/BigInt/length.js b/test/built-ins/TypedArray/prototype/filter/BigInt/length.js
deleted file mode 100644
index 3c0af26ac..000000000
--- a/test/built-ins/TypedArray/prototype/filter/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.filter
-description: >
- %TypedArray%.prototype.filter.length is 1.
-info: |
- %TypedArray%.prototype.filter ( 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.filter.length, 1);
-
-verifyNotEnumerable(TypedArray.prototype.filter, "length");
-verifyNotWritable(TypedArray.prototype.filter, "length");
-verifyConfigurable(TypedArray.prototype.filter, "length");
diff --git a/test/built-ins/TypedArray/prototype/filter/BigInt/name.js b/test/built-ins/TypedArray/prototype/filter/BigInt/name.js
deleted file mode 100644
index 4eb3d76b2..000000000
--- a/test/built-ins/TypedArray/prototype/filter/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.filter
-description: >
- %TypedArray%.prototype.filter.name is "filter".
-info: |
- %TypedArray%.prototype.filter ( 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.filter.name, "filter");
-
-verifyNotEnumerable(TypedArray.prototype.filter, "name");
-verifyNotWritable(TypedArray.prototype.filter, "name");
-verifyConfigurable(TypedArray.prototype.filter, "name");
diff --git a/test/built-ins/TypedArray/prototype/filter/BigInt/prop-desc.js b/test/built-ins/TypedArray/prototype/filter/BigInt/prop-desc.js
deleted file mode 100644
index 37c277bcf..000000000
--- a/test/built-ins/TypedArray/prototype/filter/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.filter
-description: >
- "filter" 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, 'filter');
-verifyWritable(TypedArrayPrototype, 'filter');
-verifyConfigurable(TypedArrayPrototype, 'filter');
diff --git a/test/built-ins/TypedArray/prototype/filter/BigInt/this-is-not-object.js b/test/built-ins/TypedArray/prototype/filter/BigInt/this-is-not-object.js
deleted file mode 100644
index 0a8a31a27..000000000
--- a/test/built-ins/TypedArray/prototype/filter/BigInt/this-is-not-object.js
+++ /dev/null
@@ -1,53 +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.filter
-description: Throws a TypeError exception when `this` is not Object
-info: |
- 22.2.3.9 %TypedArray%.prototype.filter ( callbackfn [ , thisArg ] )
-
- The following steps are taken:
-
- 1. Let O be the this value.
- 2. Perform ? ValidateTypedArray(O).
- ...
-
- 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 filter = TypedArray.prototype.filter;
-var callbackfn = function() {};
-
-assert.throws(TypeError, function() {
- filter.call(undefined, callbackfn);
-}, "this is undefined");
-
-assert.throws(TypeError, function() {
- filter.call(null, callbackfn);
-}, "this is null");
-
-assert.throws(TypeError, function() {
- filter.call(42, callbackfn);
-}, "this is 42");
-
-assert.throws(TypeError, function() {
- filter.call("1", callbackfn);
-}, "this is a string");
-
-assert.throws(TypeError, function() {
- filter.call(true, callbackfn);
-}, "this is true");
-
-assert.throws(TypeError, function() {
- filter.call(false, callbackfn);
-}, "this is false");
-
-var s = Symbol("s");
-assert.throws(TypeError, function() {
- filter.call(s, callbackfn);
-}, "this is a Symbol");
diff --git a/test/built-ins/TypedArray/prototype/filter/BigInt/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/filter/BigInt/this-is-not-typedarray-instance.js
deleted file mode 100644
index 4bb60e605..000000000
--- a/test/built-ins/TypedArray/prototype/filter/BigInt/this-is-not-typedarray-instance.js
+++ /dev/null
@@ -1,45 +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.filter
-description: >
- Throws a TypeError exception when `this` is not a TypedArray instance
-info: |
- 22.2.3.9 %TypedArray%.prototype.filter ( callbackfn [ , thisArg ] )
-
- The following steps are taken:
-
- 1. Let O be the this value.
- 2. Perform ? ValidateTypedArray(O).
- ...
-
- 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 filter = TypedArray.prototype.filter;
-var callbackfn = function() {};
-
-assert.throws(TypeError, function() {
- filter.call({}, callbackfn);
-}, "this is an Object");
-
-assert.throws(TypeError, function() {
- filter.call([], callbackfn);
-}, "this is an Array");
-
-var ab = new ArrayBuffer(8);
-assert.throws(TypeError, function() {
- filter.call(ab, callbackfn);
-}, "this is an ArrayBuffer instance");
-
-var dv = new DataView(new ArrayBuffer(8), 0, 1);
-assert.throws(TypeError, function() {
- filter.call(dv, callbackfn);
-}, "this is a DataView instance");