blob: a02b9e7452970e6e70f36948b0d06975e3283815 [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.constructor
description: >
WeakSet.prototype.constructor property descriptor
info: |
WeakSet ( [ iterable ] )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(WeakSet.prototype, 'constructor');
verifyWritable(WeakSet.prototype, 'constructor');
verifyConfigurable(WeakSet.prototype, 'constructor');