(a, b, c, d)
| 65 | outsideRef.c = c; |
| 66 | }; |
| 67 | const testFuncD = (a, b, c, d) => { |
| 68 | outsideRef.result = a + b * c - d; |
| 69 | return outsideRef.result; |
| 70 | }; |
| 71 | |
| 72 | assert(binding.CallWithVec(testFunc, 5, 4) === testFunc(5, 4)); |
| 73 | assert(binding.CallWithInitList(testFuncB, 2, 4, 5) === testFuncB(2, 4, 5)); |
no outgoing calls
no test coverage detected