Test revoked callable [[ProxyTarget]]

This commit is contained in:
Alexey Shvayka 2020-04-21 04:43:31 +03:00 committed by Rick Waldron
parent 449f3ed0b9
commit d6834acbf1
1 changed files with 23 additions and 0 deletions

View 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 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 revocableTarget = Proxy.revocable(function() {}, {});
revocableTarget.revoke();
var revocable = Proxy.revocable(revocableTarget.proxy, {});
assert.sameValue(typeof revocable.proxy, "function");