summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Proxy/ownKeys/return-duplicate-symbol-entries-throws.js
blob: 09d26978908726d8b66997ada7057f6e54310a74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (C) 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-proxy-object-internal-methods-and-internal-slots-ownpropertykeys
description: >
    The returned list must not contain any duplicate entries.
info: |
    [[OwnPropertyKeys]] ( )

    ...
    9. If trapResult contains any duplicate entries, throw a TypeError exception.
features: [Proxy, Symbol]
---*/

var s = Symbol();
var p = new Proxy({}, {
  ownKeys: function() {
    return [s, s];
  }
});

assert.throws(TypeError, function() {
  Object.keys(p);
});

reportCompare(0, 0);