summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Symbol/name.js
blob: 834756a95497e2fad40a85e3128f3f21e4e1fa7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2017 Aleksey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-symbol-constructor
description: >
  Symbol ( [ description ] )

includes: [propertyHelper.js]
features: [Symbol]
---*/

verifyProperty(Symbol, "name", {
  value: "Symbol",
  writable: false,
  enumerable: false,
  configurable: true
});

reportCompare(0, 0);