(goType: string | undefined)
| 369 | } |
| 370 | |
| 371 | function goTypeIsMap(goType: string | undefined): boolean { |
| 372 | return goType?.startsWith("map[") ?? false; |
| 373 | } |
| 374 | |
| 375 | function goTypeIsNilable(goType: string | undefined, ctx?: GoCodegenCtx): boolean { |
| 376 | if (!goType) return false; |
no outgoing calls
no test coverage detected
searching dependent graphs…