summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/proxy/operations-on-revoked.js
blob: 181f4c6fcf22359cc1ae3048cf24bc4b8ad111c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
load(libdir + 'asserts.js');

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

var p = r.proxy;
var p2 = r2.proxy;

assertThrowsInstanceOf(() => ({} instanceof p), TypeError);
assertThrowsInstanceOf(() => ({} instanceof p2), TypeError);

assertThrowsInstanceOf(() => Object.prototype.toString.call(p), TypeError);
assertThrowsInstanceOf(() => Object.prototype.toString.call(p2), TypeError);

assertThrowsInstanceOf(() => RegExp.prototype.exec.call(p, ""), TypeError);
assertThrowsInstanceOf(() => RegExp.prototype.exec.call(p2, ""), TypeError);