blob: 2af181b289434f730045e5379f869a28fe8093fc [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-weakmap.prototype
description: >
WeakMap.prototype is not writable, not enumerable and not configurable.
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(WeakMap, 'prototype');
verifyNotWritable(WeakMap, 'prototype');
verifyNotConfigurable(WeakMap, 'prototype');