(value: string)
| 774 | } |
| 775 | |
| 776 | function goEnumConstSuffix(value: string): string { |
| 777 | const suffix = splitGoIdentifierWords(value) |
| 778 | .map((word) => goIdentifierWord(word)) |
| 779 | .join(""); |
| 780 | return suffix || "Value"; |
| 781 | } |
| 782 | |
| 783 | function goDiscriminatedUnionVariantTypeName( |
| 784 | unionTypeName: string, |
no test coverage detected
searching dependent graphs…