(fileChunks: SourceChunk[])
| 150 | } |
| 151 | |
| 152 | function createModuleTableNode(fileChunks: SourceChunk[]): SourceNode { |
| 153 | const tableHead = "____modules = {\n"; |
| 154 | const tableEnd = "}\n"; |
| 155 | |
| 156 | return joinSourceChunks([tableHead, ...fileChunks, tableEnd]); |
| 157 | } |
| 158 | |
| 159 | type SourceChunk = string | SourceNode; |
| 160 |
no test coverage detected