blob: 3f403b7edd1fd0cedca133be8c58d7415574ea49 [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.
/*---
es6id: 23.1.3.3
description: >
Throws a TypeError if `this` is a WeakMap object.
info: |
Map.prototype.delete ( key )
1. Let M be the this value.
2. If Type(M) is not Object, throw a TypeError exception.
3. If M does not have a [[MapData]] internal slot, throw a TypeError
exception.
...
features: [WeakMap]
---*/
assert.throws(TypeError, function() {
Map.prototype.delete.call(new WeakMap(), 'attr');
});