summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1133530.js
blob: b658f41e7e33ee563a953152c2e7fe4b8ff47d21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// |jit-test| error: InternalError
x = {}; 
y = x;
if (x !== y) {}
Object.defineProperty(this, "x", {
    get: function() {
    Object.defineProperty(this, "y", {
        get: function() {
        return Proxy(this.y)
        }
    });
    }
})
x;
g = newGlobal({newCompartment: true});
g.parent = this
g.eval("Debugger(parent).onExceptionUnwind=(function(){})")
y;