mirror of
https://github.com/tc39/test262.git
synced 2025-07-22 21:45:04 +02:00
Test revoked [[ProxyHandler]]
This commit is contained in:
parent
8b610fb33a
commit
e8e3aaa77b
@ -1,21 +1,22 @@
|
|||||||
// 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 [[ProxyHandler]] as revoked Proxy.
|
||||||
...
|
info: |
|
||||||
4. If handler is a Proxy exotic object and the value of the
|
ProxyCreate ( target, handler )
|
||||||
[[ProxyHandler]] internal slot of handler is null, throw a
|
|
||||||
TypeError exception.
|
[...]
|
||||||
...
|
3. Let P be ! MakeBasicObject(« [[ProxyHandler]], [[ProxyTarget]] »).
|
||||||
|
[...]
|
||||||
|
7. Set P.[[ProxyHandler]] to handler.
|
||||||
|
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