test262/test/built-ins/Proxy/create-target-is-revoked-pr...

24 lines
612 B
JavaScript
Raw Normal View History

2015-06-02 22:44:33 +02:00
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
2020-03-28 15:41:16 +01:00
esid: sec-proxycreate
2015-06-02 22:44:33 +02:00
description: >
2020-03-28 15:41:16 +01:00
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]
2015-06-02 22:44:33 +02:00
---*/
var revocable = Proxy.revocable({}, {});
revocable.revoke();
2020-03-28 15:41:16 +01:00
var proxy = new Proxy(revocable.proxy, {});
assert.sameValue(typeof proxy, "object");