mirror of https://github.com/tc39/test262.git
WeakMap.prototype attributes
This commit is contained in:
parent
206265e8fe
commit
7f1f806f18
|
@ -0,0 +1,12 @@
|
|||
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.2.1
|
||||
description: >
|
||||
WeakMap.prototype is not writable, not enumerable and not configurable.
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
||||
verifyNotEnumerable(WeakMap, 'prototype');
|
||||
verifyNotWritable(WeakMap, 'prototype');
|
||||
verifyNotConfigurable(WeakMap, 'prototype');
|
Loading…
Reference in New Issue