Source code

Revision control

Copy as Markdown

Other Tools

// |jit-test| error: InternalError: too much recursion
b = {};
b.__proto__ = evalcx("lazy");
function g() {
g(b.toString())
}
g();