Source code
Revision control
Copy as Markdown
Other Tools
function test(x) {
var upvar = "";
function f() { upvar += ""; }
if (x > 0)
test(x - 1);
eval('');
}
oomTest(() => test(10));
function test(x) {
var upvar = "";
function f() { upvar += ""; }
if (x > 0)
test(x - 1);
eval('');
}
oomTest(() => test(10));