diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/Object/getOwnPropertyNames/proxy-invariant-duplicate-symbol-entry.js')
-rw-r--r-- | js/src/tests/test262/built-ins/Object/getOwnPropertyNames/proxy-invariant-duplicate-symbol-entry.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/getOwnPropertyNames/proxy-invariant-duplicate-symbol-entry.js b/js/src/tests/test262/built-ins/Object/getOwnPropertyNames/proxy-invariant-duplicate-symbol-entry.js new file mode 100644 index 0000000000..fe3757163f --- /dev/null +++ b/js/src/tests/test262/built-ins/Object/getOwnPropertyNames/proxy-invariant-duplicate-symbol-entry.js @@ -0,0 +1,38 @@ +// Copyright (C) 2019 Alexey Shvayka. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-object.getownpropertynames +description: > + Proxy [[OwnPropertyKeys]] trap does not skip symbol keys when validating invariant: + * The returned List contains no duplicate entries. +info: | + Object.getOwnPropertyNames ( O ) + + 1. Return ? GetOwnPropertyKeys(O, String). + + 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, Symbol] +---*/ + +var symbol = Symbol(); +var proxy = new Proxy({}, { + ownKeys: function() { + return [symbol, symbol]; + }, +}); + +assert.throws(TypeError, function() { + Object.getOwnPropertyNames(proxy); +}); + +reportCompare(0, 0); |