(blocks: string[] | undefined)
| 3015 | } |
| 3016 | |
| 3017 | function goEncodingBlocksCode(blocks: string[] | undefined): string { |
| 3018 | const lines: string[] = []; |
| 3019 | pushGoCodeBlocks(lines, blocks ?? []); |
| 3020 | return joinGoCode(lines); |
| 3021 | } |
| 3022 | |
| 3023 | function goDoNotEditHeader(schemaFileName: string): string[] { |
| 3024 | return [ |
no test coverage detected
searching dependent graphs…