(fieldType: string)
| 2446 | } |
| 2447 | |
| 2448 | function goUnionFieldUnmarshalType(fieldType: string): string { |
| 2449 | if (goTypeIsPointer(fieldType)) { |
| 2450 | return fieldType.slice(1); |
| 2451 | } |
| 2452 | return fieldType; |
| 2453 | } |
| 2454 | |
| 2455 | function goUnionFieldUnmarshalAssignment(typeName: string, fieldName: string, fieldType: string): string { |
| 2456 | if (goTypeIsPointer(fieldType)) { |
no test coverage detected
searching dependent graphs…