summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/WeakSet/prototype/delete/returns-false-when-delete-is-noop.js
blob: a122d06edb4204cc64ada00da0cd2d7640dd8e81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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: >
  Return false if entry wasn't in the WeakSet.
info: |
  WeakSet.prototype.delete ( value )

  ...
  7. Return false.

---*/

var s = new WeakSet();

assert.sameValue(s.delete({}), false);

reportCompare(0, 0);