2015-07-17 17:34:33 +02:00
|
|
|
// Copyright (C) 2013 the V8 project authors. All rights reserved.
|
2015-03-16 20:17:50 +01:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
es6id: 23.4.3.1_S2
|
2017-06-29 22:03:46 +02:00
|
|
|
esid: sec-weakset.prototype.add
|
2015-03-16 20:17:50 +01:00
|
|
|
description: >
|
2015-06-11 18:41:52 +02:00
|
|
|
Symbol may not be used as a WeakSet entry
|
2017-09-07 21:06:13 +02:00
|
|
|
features: [Symbol, WeakSet]
|
2015-03-16 20:17:50 +01:00
|
|
|
---*/
|
|
|
|
var weakset = new WeakSet();
|
|
|
|
var sym = Symbol();
|
|
|
|
|
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
weakset.add(sym);
|
|
|
|
});
|