(lines: string[])
| 3011 | } |
| 3012 | |
| 3013 | function joinGoCode(lines: string[]): string { |
| 3014 | return lines.join("\n").replace(/\n+$/, ""); |
| 3015 | } |
| 3016 | |
| 3017 | function goEncodingBlocksCode(blocks: string[] | undefined): string { |
| 3018 | const lines: string[] = []; |
no test coverage detected
searching dependent graphs…