MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / read

Method read

packages/alphatab/src/zip/ZipReader.ts:19–29  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17 }
18
19 public read(): ZipEntry[] {
20 const entries: ZipEntry[] = [];
21 while (true) {
22 const e: ZipEntry | null = this._readEntry();
23 if (!e) {
24 break;
25 }
26 entries.push(e);
27 }
28 return entries;
29 }
30
31 private _readEntry(): ZipEntry | null {
32 const readable: IReadable = this._readable;

Callers 6

handleDropMethod · 0.95
corruptTestFunction · 0.95
getInstrumentSetFunction · 0.95
readScoreMethod · 0.95
readScoreMethod · 0.95
_extractMusicXmlMethod · 0.95

Calls 2

_readEntryMethod · 0.95
pushMethod · 0.45

Tested by 2

corruptTestFunction · 0.76
getInstrumentSetFunction · 0.76