()
| 268 | */ |
| 269 | function readExportSection(reader: BinaryReader): ExportSection { |
| 270 | function readExport(): Export { |
| 271 | const name = readString(reader); |
| 272 | const descriptor = readExportDescriptor(reader); |
| 273 | return { name, descriptor }; |
| 274 | } |
| 275 | const exports = readVector(reader, readExport); |
| 276 | return { type: 'export', exports }; |
| 277 | } |
nothing calls this directly
no test coverage detected