mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			612 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			612 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2015 the V8 project authors. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
/*---
 | 
						|
esid: sec-proxycreate
 | 
						|
description: >
 | 
						|
  A Proxy is created with its [[ProxyTarget]] as revoked Proxy.
 | 
						|
info: |
 | 
						|
  ProxyCreate ( target, handler )
 | 
						|
 | 
						|
  [...]
 | 
						|
  3. Let P be ! MakeBasicObject(« [[ProxyHandler]], [[ProxyTarget]] »).
 | 
						|
  [...]
 | 
						|
  6. Set P.[[ProxyTarget]] to target.
 | 
						|
  [...]
 | 
						|
  8. Return P.
 | 
						|
features: [Proxy]
 | 
						|
---*/
 | 
						|
 | 
						|
var revocable = Proxy.revocable({}, {});
 | 
						|
revocable.revoke();
 | 
						|
 | 
						|
var proxy = new Proxy(revocable.proxy, {});
 | 
						|
assert.sameValue(typeof proxy, "object");
 |