summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/unshift/prop-desc.js
blob: 6eee7edd19bc7f6f821ea3a6e299cb3c1bc3df8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2017 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.unshift
description: >
  "unshift" property of Array.prototype
info: |
  17 ECMAScript Standard Built-in Objects
  
  Every other data property described in clauses 18 through 26 and in Annex B.2
  has the attributes { [[Writable]]: true, [[Enumerable]]: false,
    [[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
---*/

assert.sameValue(typeof Array.prototype.unshift, 'function', 'typeof');

verifyNotEnumerable(Array.prototype, "unshift");
verifyWritable(Array.prototype, "unshift");
verifyConfigurable(Array.prototype, "unshift");

reportCompare(0, 0);