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