Source code

Revision control

Copy as Markdown

Other Tools

// |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;