From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- js/src/jit-test/tests/proxy/testDirectProxyGet2.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 js/src/jit-test/tests/proxy/testDirectProxyGet2.js (limited to 'js/src/jit-test/tests/proxy/testDirectProxyGet2.js') diff --git a/js/src/jit-test/tests/proxy/testDirectProxyGet2.js b/js/src/jit-test/tests/proxy/testDirectProxyGet2.js new file mode 100644 index 000000000..ab3efae32 --- /dev/null +++ b/js/src/jit-test/tests/proxy/testDirectProxyGet2.js @@ -0,0 +1,22 @@ +/* + * Call the trap with the handler as the this value, the target as the first + * argument, the name of the property as the second argument, and the receiver + * as the third argument + */ +var target = {}; +for (var key of ['foo', Symbol.iterator]) { + handler = {}; + for (let p of [new Proxy(target, handler), Proxy.revocable(target, handler).proxy]) { + handler.get = + function (target1, name, receiver) { + assertEq(this, handler); + assertEq(target1, target); + assertEq(name, key); + assertEq(receiver, p); + called = true; + }; + var called = false; + assertEq(p[key], undefined); + assertEq(called, true); + } +} -- cgit v1.2.3