mirror of
https://github.com/tc39/test262.git
synced 2025-07-26 23:44:27 +02:00
Test revoked callable [[ProxyTarget]]
This commit is contained in:
parent
91b867b660
commit
9ccd3a7b9e
@ -0,0 +1,23 @@
|
|||||||
|
// 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 function 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(function() {}, {});
|
||||||
|
revocable.revoke();
|
||||||
|
|
||||||
|
var proxy = new Proxy(revocable.proxy, {});
|
||||||
|
assert.sameValue(typeof proxy, "function");
|
Loading…
x
Reference in New Issue
Block a user