(lines: string[], text: string, indent = "", wrap = true)
| 176 | } |
| 177 | |
| 178 | function pushGoComment(lines: string[], text: string, indent = "", wrap = true): void { |
| 179 | lines.push(...goCommentLines(text, indent, wrap)); |
| 180 | } |
| 181 | |
| 182 | function pushGoCommentForContext(lines: string[], text: string, ctx: GoCodegenCtx, indent = ""): void { |
| 183 | pushGoComment(lines, text, indent, ctx.wrapComments !== false); |
no test coverage detected
searching dependent graphs…