blob: 811a7d6f60390d892a51b769983bebaa482c5588 [file] [log] [blame]
// 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);
});