Skip to content
Snippets Groups Projects
  • smikes's avatar
    e1f3ffce
    Symbol.species tests · e1f3ffce
    smikes authored
    Initial tests for property existence
    move getter name test to builtin-getter-name
    initial cut at extends test
    incorporate line notes, thanks @anba
    e1f3ffce
    History
    Symbol.species tests
    smikes authored
    Initial tests for property existence
    move getter name test to builtin-getter-name
    initial cut at extends test
    incorporate line notes, thanks @anba
Symbol.species.in_Set.js 480 B
// Copyright 2015 Cubane Canada, Inc.  All rights reserved.
// See LICENSE for details.

/*---
info: >
 Set has a property at `Symbol.species`
es6id: 23.2.2.2
author: Sam Mikes
description: Set[Symbol.species] exists per spec
includes: 
  - propertyHelper.js
---*/

assert.sameValue(Set[Symbol.species], Set, "Set[Symbol.species] is Set");

verifyNotWritable(Set, Symbol.species, Symbol.species);
verifyNotEnumerable(Set, Symbol.species);
verifyConfigurable(Set, Symbol.species);