blob: 04f086a298fbfb6de8fa5a1b5e1aff4e33a7532e [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.3.3.3
esid: sec-weakmap.prototype.get
description: >
Throws a TypeError if `this` is a Map object.
info: |
WeakMap.prototype.get ( key )
...
3. If M does not have a [[WeakMapData]] internal slot, throw a TypeError
exception.
...
features: [Map]
---*/
assert.throws(TypeError, function() {
WeakMap.prototype.get.call(new Map(), 1);
});
assert.throws(TypeError, function() {
var map = new WeakMap();
map.get.call(new Map(), 1);
});