blob: 27f94f4001e00f16295ab204e9a1eca1209f866b [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.10
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]
---*/
var descriptor = Object.getOwnPropertyDescriptor(Map.prototype, 'size');
var map = new Map();
// Does not throw
descriptor.get.call(map);
assert.throws(TypeError, function() {
descriptor.get.call(new Set());
});