summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js')
-rw-r--r--js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js
new file mode 100644
index 0000000000..3b79165925
--- /dev/null
+++ b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js
@@ -0,0 +1,20 @@
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+es6id: 22.2.2.4
+description: >
+ @@species property returns the `this` value
+info: |
+ 22.2.2.4 get %TypedArray% [ @@species ]
+
+ 1. Return the this value.
+includes: [testTypedArray.js]
+features: [Symbol.species, TypedArray]
+---*/
+
+var value = {};
+var getter = Object.getOwnPropertyDescriptor(TypedArray, Symbol.species).get;
+
+assert.sameValue(getter.call(value), value);
+
+reportCompare(0, 0);