mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
These tests are derived from the following files within the Google V8 project: test/mjsunit/harmony/private.js
19 lines
497 B
JavaScript
19 lines
497 B
JavaScript
// Copyright 2015 Cubane Canada, Inc. All rights reserved.
|
|
// See LICENSE for details.
|
|
|
|
/*---
|
|
info: >
|
|
Array has a property at `Symbol.species`
|
|
es6id: 22.1.2.5
|
|
author: Sam Mikes
|
|
description: Array[Symbol.species] exists per spec
|
|
includes:
|
|
- propertyHelper.js
|
|
---*/
|
|
|
|
assert.sameValue(Array[Symbol.species], Array, "Array[Symbol.species] is Array");
|
|
|
|
verifyNotWritable(Array, Symbol.species, Symbol.species);
|
|
verifyNotEnumerable(Array, Symbol.species);
|
|
verifyConfigurable(Array, Symbol.species);
|