MCPcopy Create free account
hub / github.com/callstackincubator/polygen / readExport

Function readExport

packages/wasm-parser/src/reader/section-reader.ts:270–274  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

268 */
269function 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}

Callers

nothing calls this directly

Calls 2

readStringFunction · 0.85
readExportDescriptorFunction · 0.85

Tested by

no test coverage detected