()
| 80 | testLog(); |
| 81 | |
| 82 | function testSin() { |
| 83 | function f() { return Math.sin(Math.PI / 2); } |
| 84 | %PrepareFunctionForOptimization(f); |
| 85 | f(); |
| 86 | %OptimizeMaglevOnNextCall(f); |
| 87 | assertEquals(1.0, f()); |
| 88 | } |
| 89 | testSin(); |
| 90 | |
| 91 | function testTan() { |
no test coverage detected
searching dependent graphs…