blob: 3a14a93edb578521ebf378e2b6756d0ebe12150e [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.
/*---
esid: sec-weakset.prototype.delete
description: >
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
info: |
WeakSet.prototype.delete ( value )
...
3. If S does not have a [[WeakSetData]] internal slot, throw a TypeError
exception.
...
---*/
assert.throws(TypeError, function() {
WeakSet.prototype.delete.call({}, {});
});
assert.throws(TypeError, function() {
var s = new WeakSet();
s.delete.call({}, {});
});