mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
Test revoked [[ProxyTarget]]
This commit is contained in:
parent
c2f0a3ced9
commit
449f3ed0b9
23
test/built-ins/Proxy/revocable/target-is-revoked-proxy.js
Normal file
23
test/built-ins/Proxy/revocable/target-is-revoked-proxy.js
Normal file
@ -0,0 +1,23 @@
|
||||
// Copyright (C) 2020 Alexey Shvayka. 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 revocableTarget = Proxy.revocable({}, {});
|
||||
revocableTarget.revoke();
|
||||
|
||||
var revocable = Proxy.revocable(revocableTarget.proxy, {});
|
||||
assert.sameValue(typeof revocable.proxy, "object");
|
Loading…
x
Reference in New Issue
Block a user