(typeName: string)
| 184 | } |
| 185 | |
| 186 | function goExperimentalTypeComment(typeName: string): string { |
| 187 | return `Experimental: ${typeName} is part of an experimental API and may change or be removed.`; |
| 188 | } |
| 189 | |
| 190 | function pushGoExperimentalTypeComment(lines: string[], typeName: string, ctx: GoCodegenCtx): void { |
| 191 | pushGoCommentForContext(lines, goExperimentalTypeComment(typeName), ctx); |
no outgoing calls
no test coverage detected
searching dependent graphs…