summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/prop-desc.js
blob: 5b3084aec5861aa7dd468241b8aed078970bafd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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
description: >
  The property descriptor of Array.prototype
info: |
  22.1.2.4 Array.prototype

  The value of Array.prototype is %ArrayPrototype%, the intrinsic Array prototype object.

  This property has the attributes { [[Writable]]: false, [[Enumerable]]: false,
    [[Configurable]]: false }.
includes: [propertyHelper.js]
---*/

verifyNotEnumerable(Array, 'prototype');
verifyNotWritable(Array, 'prototype');
verifyNotConfigurable(Array, 'prototype');

reportCompare(0, 0);