(type, value)
| 71 | } |
| 72 | |
| 73 | function hasStringPointerArg(type, value) { |
| 74 | return typeof value === 'string' && needsStringPointerConversion(type); |
| 75 | } |
| 76 | |
| 77 | function hasPointerMemoryArg(type, value) { |
| 78 | return (needsRawPointerConversion(type) || needsStringPointerConversion(type)) && |
no test coverage detected
searching dependent graphs…