(type)
| 53 | } |
| 54 | |
| 55 | function needsStringPointerConversion(type) { |
| 56 | return type === 'string' || type === 'str' || needsPointerLikeConversion(type); |
| 57 | } |
| 58 | |
| 59 | function needsNullPointerConversion(type) { |
| 60 | return needsPointerLikeConversion(type) || type === 'string' || type === 'str' || |
no test coverage detected
searching dependent graphs…