(lines: string[], text: string, ctx: GoCodegenCtx, indent = "")
| 180 | } |
| 181 | |
| 182 | function pushGoCommentForContext(lines: string[], text: string, ctx: GoCodegenCtx, indent = ""): void { |
| 183 | pushGoComment(lines, text, indent, ctx.wrapComments !== false); |
| 184 | } |
| 185 | |
| 186 | function goExperimentalTypeComment(typeName: string): string { |
| 187 | return `Experimental: ${typeName} is part of an experimental API and may change or be removed.`; |
no test coverage detected
searching dependent graphs…