blob: cd1e8971b78752ee7d1374660cdfa593d786efaa [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.7
description: >
Throws a TypeError if `this` is a Set object.
info: |
Map.prototype.has ( key )
...
3. If M does not have a [[MapData]] internal slot, throw a TypeError
exception.
...
features: [Set]
---*/
assert.throws(TypeError, function() {
Map.prototype.has.call(new Set(), 1);
});
assert.throws(TypeError, function() {
var m = new Map();
m.has.call(new Set(), 1);
});