(i, x4, y4)
| 176 | }; |
| 177 | |
| 178 | function f(i, x4, y4) { |
| 179 | var a4 = input[i].a; |
| 180 | var b4 = input[i].b; |
| 181 | a4 = a4 + a4 / 100; |
| 182 | b4 = b4 + b4 / 100; |
| 183 | g1(i - 1, a4, b4); |
| 184 | return a4 + b4; |
| 185 | }; |
| 186 | |
| 187 | // Test calling f normally and as a constructor. |
| 188 | f(input.length - 1, 11.11, 12.12); |
no test coverage detected