summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Proxy/global-receiver.js
blob: b2d160c0dd1d24169663345ddb715027b81ddcbc (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
25
26
27
28
29
30
31
32
33
34
35
// The global object can be the receiver passed to the get and set traps of a Proxy.
var global = this;
var proto = Object.getPrototypeOf(global);
var gets = 0, sets = 0;

try {
    Object.setPrototypeOf(global, new Proxy(proto, {
        has(t, id) {
            return id === "bareword" || Reflect.has(t, id);
        },
        get(t, id, r) {
            gets++;
            assertEq(r, global);
            return Reflect.get(t, id, r);
        },
        set(t, id, v, r) {
            sets++;
            assertEq(r, global);
            return Reflect.set(t, id, v, r);
        }
    }));
} catch (e) {
    global.bareword = undefined;
    gets = 1;
    sets = 1;
}

assertEq(bareword, undefined);
assertEq(gets, 1);

bareword = 12;
assertEq(sets, 1);
assertEq(global.bareword, 12);

reportCompare(0, 0);