(lines: string[], typeName: string, ctx: GoCodegenCtx)
| 188 | } |
| 189 | |
| 190 | function pushGoExperimentalTypeComment(lines: string[], typeName: string, ctx: GoCodegenCtx): void { |
| 191 | pushGoCommentForContext(lines, goExperimentalTypeComment(typeName), ctx); |
| 192 | } |
| 193 | |
| 194 | function hasGoCommentLinesInLeadingDocBlock(source: string, typeDeclOffset: number, commentLines: string[]): boolean { |
| 195 | const precedingLines = source.slice(0, typeDeclOffset).split(/\r?\n/); |
no test coverage detected
searching dependent graphs…