summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/lexical-environment/unscopables-proxy.js
blob: fcf241ee4647a605cc2068af1187db7ff6a19c5d (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
36
37
38
39
40
41
42
43
44
45
46
// Object operations are performed in the right order, as observed by proxies.

let log = [];
function LoggingProxyHandlerWrapper(name, handler={}) {
    return new Proxy(handler, {
        get(t, id) {
            let method = handler[id];
            return function (...args) {
                log.push([name + "." + id, ...args.filter(v => typeof v !== "object")]);
                if (method === undefined)
                    return Reflect[id].apply(null, args);
                return method.apply(this, args);
            };
        }
    });
}

function LoggingProxy(name, target) {
    return new Proxy(target, new LoggingProxyHandlerWrapper(name));
}

let proto = {x: 44};
let proto_proxy = new LoggingProxy("proto", proto);
let unscopables = {x: true};
let unscopables_proxy = new LoggingProxy("unscopables", {x: true});
let env = Object.create(proto_proxy, {
    [Symbol.unscopables]: { value: unscopables_proxy }
});
let env_proxy = new LoggingProxy("env", env);

let x = 11;
function f() {
    with (env_proxy)
        return x;
}

assertEq(f(), 11);

assertDeepEq(log, [
    ["env.has", "x"],
    ["proto.has", "x"],
    ["env.get", Symbol.unscopables],
    ["unscopables.get", "x"]
]);

reportCompare(0, 0);