blob: 7ce3773702cc9fbda0da6c68be1b1be5e3ab8112 (
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
27
28
29
30
31
32
33
34
35
36
37
|
// Copyright (C) 2019 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-object.getownpropertysymbols
description: >
Proxy [[OwnPropertyKeys]] trap does not skip string keys when validating invariant:
* The returned List contains no duplicate entries.
info: |
Object.getOwnPropertySymbols ( O )
1. Return ? GetOwnPropertyKeys(O, Symbol).
GetOwnPropertyKeys ( O, type )
...
2. Let keys be ? obj.[[OwnPropertyKeys]]().
[[OwnPropertyKeys]] ( )
...
8. Let trapResult be ? CreateListFromArrayLike(trapResultArray, « String, Symbol »).
9. If trapResult contains any duplicate entries, throw a TypeError exception.
features: [Proxy]
---*/
var proxy = new Proxy({}, {
ownKeys: function() {
return ['a', 'a'];
},
});
assert.throws(TypeError, function() {
Object.getOwnPropertySymbols(proxy);
});
reportCompare(0, 0);
|