mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	* Defer making [[ProxyTarget]] non-extensible * Fix typo in method name * Add last Object.keys with Proxy invariant test * Add Object.getOwnPropertySymbols with Proxy invariants tests * Add Object.getOwnPropertyNames with Proxy invariants tests * Replace "es6id" with "esid" in Object.getOwnPropertySymbols tests
		
			
				
	
	
		
			36 lines
		
	
	
		
			902 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			902 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// 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);
 | 
						|
});
 |