(value: GoDiscriminatorValue)
| 798 | } |
| 799 | |
| 800 | function goDiscriminatorConstSuffix(value: GoDiscriminatorValue): string { |
| 801 | return typeof value === "boolean" ? (value ? "True" : "False") : goEnumConstSuffix(value); |
| 802 | } |
| 803 | |
| 804 | function compareGoDiscriminatorValues(left: GoDiscriminatorValue, right: GoDiscriminatorValue): number { |
| 805 | if (typeof left === "boolean" && typeof right === "boolean") { |
no test coverage detected
searching dependent graphs…