(goType: string, ctx?: GoCodegenCtx)
| 383 | } |
| 384 | |
| 385 | function goTypeWithOptionalPointer(goType: string, ctx?: GoCodegenCtx): string { |
| 386 | return goTypeIsNilable(goType, ctx) ? goType : `*${goType}`; |
| 387 | } |
| 388 | |
| 389 | function goJSONOmitSuffix(required: boolean, goType: string): string { |
| 390 | if (required) return ""; |
no test coverage detected
searching dependent graphs…