(func)
| 16 | %NeverOptimizeFunction(test); // Don't want to inline the func into test. |
| 17 | |
| 18 | function test(func) { |
| 19 | for (var i = 0; i < 3; i++) { |
| 20 | global_counter = 0; |
| 21 | %PrepareFunctionForOptimization(func); |
| 22 | assertThrows(func); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | function n1() { |
| 27 | while (true) thrower(); |
no test coverage detected