(typeName: string, ctx: GoCodegenCtx)
| 1036 | } |
| 1037 | |
| 1038 | function goDiscriminatedUnionInfoForType(typeName: string, ctx: GoCodegenCtx): GoDiscriminatedUnionInfo | undefined { |
| 1039 | return ctx.discriminatedUnions.get(typeName); |
| 1040 | } |
| 1041 | |
| 1042 | function goDiscriminatedUnionField(goType: string, ctx: GoCodegenCtx): GoDiscriminatedUnionField | undefined { |
| 1043 | const single = goDiscriminatedUnionInfoForType(goType, ctx); |
no test coverage detected
searching dependent graphs…