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

Method _parseNotes

packages/alphatab/src/importer/GpifParser.ts:2234–2242  ·  view source on GitHub ↗
(node: XmlNode)

Source from the content-addressed store, hash-verified

2232 // <Notes>...</Notes>
2233 //
2234 private _parseNotes(node: XmlNode): void {
2235 for (const c of node.childElements()) {
2236 switch (c.localName) {
2237 case 'Note':
2238 this._parseNote(c);
2239 break;
2240 }
2241 }
2242 }
2243
2244 private _parseNote(node: XmlNode): void {
2245 const note: Note = new Note();

Callers 1

_parseDomMethod · 0.95

Calls 2

_parseNoteMethod · 0.95
childElementsMethod · 0.80

Tested by

no test coverage detected