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