(f)
| 85 | } |
| 86 | |
| 87 | function test(f) { |
| 88 | %PrepareFunctionForOptimization(f); |
| 89 | f(); |
| 90 | assertTrue(f()); |
| 91 | %OptimizeFunctionOnNextCall(f); |
| 92 | assertTrue(f()); |
| 93 | } |
| 94 | |
| 95 | test(positive_increment); |
| 96 | test(positive_increment_strict); |
no test coverage detected
searching dependent graphs…