(code: string)
| 2996 | } |
| 2997 | |
| 2998 | function stripTrailingGoWhitespace(code: string): string { |
| 2999 | return code.replace(/[ \t]+$/gm, ""); |
| 3000 | } |
| 3001 | |
| 3002 | function pushGoCodeBlocks(lines: string[], blocks: Iterable<string>): void { |
| 3003 | for (const block of blocks) { |
no outgoing calls
no test coverage detected
searching dependent graphs…