blob: 2712492d4eaafc7f257790a2067cfd555395fe4f [file] [log] [blame]
// 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');