summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/WeakSet/prototype/prototype-attributes.js
blob: 682327d2a73549bb56ad414f33c01499811c990d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-weakset.prototype
description: >
  WeakSet.prototype is not writable, not enumerable and not configurable.
includes: [propertyHelper.js]
---*/

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

reportCompare(0, 0);