blob: 4e542448eac22226b2a8fd62a7a1de585f8d6aad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2015 Cubane Canada, Inc. All rights reserved.
// See LICENSE for details.
/*---
info: |
Symbol.species is a well-known symbol
es6id: 19.4.2.10
author: Sam Mikes
description: Symbol.species exists
includes:
- propertyHelper.js
features: [Symbol.species]
---*/
assert(Symbol !== undefined, "Symbol exists");
assert(Symbol.species !== undefined, "Symbol.species exists");
verifyNotWritable(Symbol, "species");
verifyNotEnumerable(Symbol, "species");
verifyNotConfigurable(Symbol, "species");
reportCompare(0, 0);
|