summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Proxy/create-handler-is-revoked-proxy.js
blob: 3ff7add3380ba713183be807b6a4c7770c4fc532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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 [[ProxyHandler]] as revoked Proxy.
info: |
  ProxyCreate ( target, handler )

  [...]
  3. Let P be ! MakeBasicObject(« [[ProxyHandler]], [[ProxyTarget]] »).
  [...]
  7. Set P.[[ProxyHandler]] to handler.
  8. Return P.
features: [Proxy]
---*/

var revocable = Proxy.revocable({}, {});
revocable.revoke();

var proxy = new Proxy({}, revocable.proxy);
assert.sameValue(typeof proxy, "object");

reportCompare(0, 0);