(expected, actual)
| 36 | } |
| 37 | |
| 38 | function throwFFIArgCountError(expected, actual) { |
| 39 | throwFFIArgError( |
| 40 | `Invalid argument count: expected ${expected}, got ${actual}`); |
| 41 | } |
| 42 | |
| 43 | function needsRawPointerConversion(type, rawFn) { |
| 44 | if (rawFn !== undefined && rawFn[kFastBuffer] === true && |
no test coverage detected
searching dependent graphs…