1 2 3 4 5 6 7 8 9
(function f(i) { // Add an OSR block which does not define the callee. for (; false; ) {}; // Use the callee. if (i) f(i - 1); })(50);