blob: 0564ead0b658264b7ee862736192a0f3b45c9280 [file] [log] [blame]
/* Make sure the interpreter can pop lowered frames pushed by CompileFunction. */
function recompile() {}
function bar() {
for (var i = 0; i < 50; i++) {
var foo = new Function("recompile(arguments[0] + " + i + "); return arguments[0]");
assertEq(foo.apply(null, [i]), i);
}
}
bar();