blob: c9c06da821e6191f142b492a7da6b76b25425202 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 23.2.2.2
description: >
Set[Symbol.species] accessor property get name
info: |
23.2.2.2 get Set [ @@species ]
...
The value of the name property of this function is "get [Symbol.species]".
features: [Symbol.species]
---*/
var descriptor = Object.getOwnPropertyDescriptor(Set, Symbol.species);
assert.sameValue(
descriptor.get.name,
'get [Symbol.species]'
);
reportCompare(0, 0);
|