diff options
Diffstat (limited to 'js/src/jit-test/tests/proxy/testDirectProxyConstruct4.js')
-rw-r--r-- | js/src/jit-test/tests/proxy/testDirectProxyConstruct4.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/proxy/testDirectProxyConstruct4.js b/js/src/jit-test/tests/proxy/testDirectProxyConstruct4.js new file mode 100644 index 000000000..35a44deac --- /dev/null +++ b/js/src/jit-test/tests/proxy/testDirectProxyConstruct4.js @@ -0,0 +1,12 @@ +load(libdir + "asserts.js"); +// Revoked proxies should throw before calling the handler + +var called = false; +var target = function () { }; +var handler = { construct: () => called = true }; +var holder = Proxy.revocable(target, handler); + +holder.revoke(); + +assertThrowsInstanceOf(() => new holder.proxy(), TypeError); +assertEq(called, false); |