bug-1744495.js (351B)
1 // |jit-test| --fast-warmup; --more-compartments 2 3 enableTrackAllocations() 4 e = function(a) { 5 b = newGlobal() 6 c = new b.Debugger 7 return function(d, code) { 8 c.addDebuggee(a) 9 c.getNewestFrame().older.older.eval(code) 10 } 11 }(this) 12 for (var i = 0; i < 50; i++) f() 13 function g() { 14 e(1, "a.push0") 15 } 16 function f() { 17 g() 18 }