(argumentTypes, returnType)
| 72 | } = require('internal/ffi/fast-api'); |
| 73 | |
| 74 | function makeSignature(argumentTypes, returnType) { |
| 75 | return { |
| 76 | __proto__: null, |
| 77 | arguments: argumentTypes, |
| 78 | return: returnType, |
| 79 | }; |
| 80 | } |
| 81 | |
| 82 | function wrapFFIFunction(rawFn, argumentTypes, returnType, owner) { |
| 83 | if (argumentTypes === undefined && rawFn !== undefined && rawFn !== null) { |
no outgoing calls
no test coverage detected
searching dependent graphs…