blob: 3c361eb9897fbe32891e50c525459ea8d2998d30 [file] [log] [blame]
// 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.1.2.2
description: >
Map[Symbol.species] accessor property get name
info: |
23.1.2.2 get Map [ @@species ]
...
The value of the name property of this function is "get [Symbol.species]".
features: [Symbol.species]
---*/
var descriptor = Object.getOwnPropertyDescriptor(Map, Symbol.species);
assert.sameValue(
descriptor.get.name,
'get [Symbol.species]'
);