(type)
| 49 | } |
| 50 | |
| 51 | function needsPointerLikeConversion(type) { |
| 52 | return type === 'pointer' || type === 'ptr' || type === 'function'; |
| 53 | } |
| 54 | |
| 55 | function needsStringPointerConversion(type) { |
| 56 | return type === 'string' || type === 'str' || needsPointerLikeConversion(type); |
no outgoing calls
no test coverage detected
searching dependent graphs…