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

Method childElements

packages/alphatab/src/xml/XmlNode.ts:49–55  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

47 public firstElement: XmlNode | null = null;
48
49 public *childElements() {
50 for (const c of this.childNodes) {
51 if (c.nodeType === XmlNodeType.Element) {
52 yield c;
53 }
54 }
55 }
56
57 public addChild(node: XmlNode): void {
58 this.childNodes.push(node);

Callers 15

readFullInstrumentSetFunction · 0.80
_parseDomMethod · 0.80
_parseAssetsMethod · 0.80
_parseScoreNodeMethod · 0.80
_parseMasterTrackNodeMethod · 0.80
_parseAutomationsMethod · 0.80
_parseAutomationMethod · 0.80
_parseTracksNodeMethod · 0.80
_parseTrackMethod · 0.80
_parseNotationPatchMethod · 0.80

Calls

no outgoing calls

Tested by 1

readFullInstrumentSetFunction · 0.64