blob: dde388fe0b8a7edf571f98f17d6ee839004b871c [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.2.3.4
description: >
Set.prototype.delete ( value )
...
3. If S does not have a [[SetData]] internal slot, throw a TypeError exception.
...
---*/
assert.throws(TypeError, function() {
Set.prototype.delete.call(Set.prototype, 1);
});
assert.throws(TypeError, function() {
var s = new Set();
s.delete.call(Set.prototype, 1);
});