WeakMap.prototype attributes

This commit is contained in:
Leonardo Balter 2015-07-01 15:36:54 -04:00
parent 206265e8fe
commit 7f1f806f18
1 changed files with 12 additions and 0 deletions

View File

@ -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');