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

Method finish

packages/alphatab/src/model/Lyrics.ts:41–44  ·  view source on GitHub ↗
(skipEmptyEntries: boolean = false)

Source from the content-addressed store, hash-verified

39 public chunks!: string[];
40
41 public finish(skipEmptyEntries: boolean = false): void {
42 this.chunks = [];
43 this._parse(this.text, 0, this.chunks, skipEmptyEntries);
44 }
45
46 private _parse(str: string, p: number, _chunks: string[], skipEmptyEntries: boolean): void {
47 if (!str) {

Callers 2

testLyricsFunction · 0.95
readBeatMethod · 0.95

Calls 1

_parseMethod · 0.95

Tested by 1

testLyricsFunction · 0.76