mirror of
https://github.com/tc39/test262.git
synced 2025-07-25 15:04:43 +02:00
Test revoked [[ProxyTarget]]
This commit is contained in:
parent
432adbb61e
commit
8b610fb33a
@ -1,21 +1,23 @@
|
|||||||
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
/*---
|
/*---
|
||||||
es6id: 9.5.15
|
esid: sec-proxycreate
|
||||||
description: >
|
description: >
|
||||||
Proxy ( target, handler )
|
A Proxy is created with its [[ProxyTarget]] as revoked Proxy.
|
||||||
...
|
info: |
|
||||||
2. If target is a Proxy exotic object and the value of the
|
ProxyCreate ( target, handler )
|
||||||
[[ProxyHandler]] internal slot of target is null, throw a
|
|
||||||
TypeError exception.
|
[...]
|
||||||
...
|
3. Let P be ! MakeBasicObject(« [[ProxyHandler]], [[ProxyTarget]] »).
|
||||||
|
[...]
|
||||||
|
6. Set P.[[ProxyTarget]] to target.
|
||||||
|
[...]
|
||||||
|
8. Return P.
|
||||||
features: [Proxy]
|
features: [Proxy]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var revocable = Proxy.revocable({}, {});
|
var revocable = Proxy.revocable({}, {});
|
||||||
|
|
||||||
revocable.revoke();
|
revocable.revoke();
|
||||||
|
|
||||||
assert.throws(TypeError, function() {
|
var proxy = new Proxy(revocable.proxy, {});
|
||||||
new Proxy(revocable.proxy, {});
|
assert.sameValue(typeof proxy, "object");
|
||||||
});
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user