summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js
blob: 3b79165925a21810c945d3b43acae078833a66f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);