(goType: string | undefined)
| 361 | } |
| 362 | |
| 363 | function goTypeIsPointer(goType: string | undefined): boolean { |
| 364 | return goType?.startsWith("*") ?? false; |
| 365 | } |
| 366 | |
| 367 | function goTypeIsSlice(goType: string | undefined): boolean { |
| 368 | return goType?.startsWith("[]") ?? false; |
no outgoing calls
no test coverage detected
searching dependent graphs…