(deopt)
| 27 | (function() { |
| 28 | var result = 0; |
| 29 | var eagerDeoptInCalled = function(deopt) { |
| 30 | var sum = function(v, i, o) { |
| 31 | result += v; |
| 32 | if (i == 13 && deopt) { |
| 33 | a.abc = 25; |
| 34 | } |
| 35 | }; |
| 36 | a.forEach(sum); |
| 37 | }; |
| 38 | %PrepareFunctionForOptimization(eagerDeoptInCalled); |
| 39 | eagerDeoptInCalled(); |
| 40 | eagerDeoptInCalled(); |
no test coverage detected