summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/values
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/values')
-rw-r--r--test/built-ins/TypedArray/prototype/values/BigInt/invoked-as-func.js30
-rw-r--r--test/built-ins/TypedArray/prototype/values/BigInt/invoked-as-method.js30
-rw-r--r--test/built-ins/TypedArray/prototype/values/BigInt/length.js30
-rw-r--r--test/built-ins/TypedArray/prototype/values/BigInt/name.js27
-rw-r--r--test/built-ins/TypedArray/prototype/values/BigInt/prop-desc.js19
-rw-r--r--test/built-ins/TypedArray/prototype/values/BigInt/this-is-not-object.js52
-rw-r--r--test/built-ins/TypedArray/prototype/values/BigInt/this-is-not-typedarray-instance.js44
7 files changed, 0 insertions, 232 deletions
diff --git a/test/built-ins/TypedArray/prototype/values/BigInt/invoked-as-func.js b/test/built-ins/TypedArray/prototype/values/BigInt/invoked-as-func.js
deleted file mode 100644
index 26607d78a..000000000
--- a/test/built-ins/TypedArray/prototype/values/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.values
-description: Throws a TypeError exception when invoked as a function
-info: |
- 22.2.3.29 %TypedArray%.prototype.values ( )
-
- 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 values = TypedArray.prototype.values;
-
-assert.sameValue(typeof values, 'function');
-
-assert.throws(TypeError, function() {
- values();
-});
diff --git a/test/built-ins/TypedArray/prototype/values/BigInt/invoked-as-method.js b/test/built-ins/TypedArray/prototype/values/BigInt/invoked-as-method.js
deleted file mode 100644
index cec67a6de..000000000
--- a/test/built-ins/TypedArray/prototype/values/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.values
-description: Requires a [[TypedArrayName]] internal slot.
-info: |
- 22.2.3.29 %TypedArray%.prototype.values ( )
-
- 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.values, 'function');
-
-assert.throws(TypeError, function() {
- TypedArrayPrototype.values();
-});
diff --git a/test/built-ins/TypedArray/prototype/values/BigInt/length.js b/test/built-ins/TypedArray/prototype/values/BigInt/length.js
deleted file mode 100644
index ce420f0ae..000000000
--- a/test/built-ins/TypedArray/prototype/values/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.values
-description: >
- %TypedArray%.prototype.values.length is 0.
-info: |
- %TypedArray%.prototype.values ( )
-
- 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.values.length, 0);
-
-verifyNotEnumerable(TypedArray.prototype.values, "length");
-verifyNotWritable(TypedArray.prototype.values, "length");
-verifyConfigurable(TypedArray.prototype.values, "length");
diff --git a/test/built-ins/TypedArray/prototype/values/BigInt/name.js b/test/built-ins/TypedArray/prototype/values/BigInt/name.js
deleted file mode 100644
index cc8ad3aed..000000000
--- a/test/built-ins/TypedArray/prototype/values/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.values
-description: >
- %TypedArray%.prototype.values.name is "values".
-info: |
- %TypedArray%.prototype.values ( )
-
- 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.values.name, "values");
-
-verifyNotEnumerable(TypedArray.prototype.values, "name");
-verifyNotWritable(TypedArray.prototype.values, "name");
-verifyConfigurable(TypedArray.prototype.values, "name");
diff --git a/test/built-ins/TypedArray/prototype/values/BigInt/prop-desc.js b/test/built-ins/TypedArray/prototype/values/BigInt/prop-desc.js
deleted file mode 100644
index b805b7e8c..000000000
--- a/test/built-ins/TypedArray/prototype/values/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.values
-description: >
- "values" 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, 'values');
-verifyWritable(TypedArrayPrototype, 'values');
-verifyConfigurable(TypedArrayPrototype, 'values');
diff --git a/test/built-ins/TypedArray/prototype/values/BigInt/this-is-not-object.js b/test/built-ins/TypedArray/prototype/values/BigInt/this-is-not-object.js
deleted file mode 100644
index 57b57a78b..000000000
--- a/test/built-ins/TypedArray/prototype/values/BigInt/this-is-not-object.js
+++ /dev/null
@@ -1,52 +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.values
-description: Throws a TypeError exception when `this` is not Object
-info: |
- 22.2.3.30 %TypedArray%.prototype.values ( )
-
- 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 values = TypedArray.prototype.values;
-
-assert.throws(TypeError, function() {
- values.call(undefined);
-}, "this is undefined");
-
-assert.throws(TypeError, function() {
- values.call(null);
-}, "this is null");
-
-assert.throws(TypeError, function() {
- values.call(42);
-}, "this is 42");
-
-assert.throws(TypeError, function() {
- values.call("1");
-}, "this is a string");
-
-assert.throws(TypeError, function() {
- values.call(true);
-}, "this is true");
-
-assert.throws(TypeError, function() {
- values.call(false);
-}, "this is false");
-
-var s = Symbol("s");
-assert.throws(TypeError, function() {
- values.call(s);
-}, "this is a Symbol");
diff --git a/test/built-ins/TypedArray/prototype/values/BigInt/this-is-not-typedarray-instance.js b/test/built-ins/TypedArray/prototype/values/BigInt/this-is-not-typedarray-instance.js
deleted file mode 100644
index 68b78aedd..000000000
--- a/test/built-ins/TypedArray/prototype/values/BigInt/this-is-not-typedarray-instance.js
+++ /dev/null
@@ -1,44 +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.values
-description: >
- Throws a TypeError exception when `this` is not a TypedArray instance
-info: |
- 22.2.3.30 %TypedArray%.prototype.values ( )
-
- 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 values = TypedArray.prototype.values;
-
-assert.throws(TypeError, function() {
- values.call({});
-}, "this is an Object");
-
-assert.throws(TypeError, function() {
- values.call([]);
-}, "this is an Array");
-
-var ab = new ArrayBuffer(8);
-assert.throws(TypeError, function() {
- values.call(ab);
-}, "this is an ArrayBuffer instance");
-
-var dv = new DataView(new ArrayBuffer(8), 0, 1);
-assert.throws(TypeError, function() {
- values.call(dv);
-}, "this is a DataView instance");