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

Method write

packages/alphatab/src/xml/XmlWriter.ts:121–125  ·  view source on GitHub ↗
(xml: XmlNode, indention: string, xmlHeader: boolean)

Source from the content-addressed store, hash-verified

119 }
120
121 public static write(xml: XmlNode, indention: string, xmlHeader: boolean): string {
122 const writer = new XmlWriter(indention, xmlHeader);
123 writer.writeNode(xml);
124 return writer.toString();
125 }
126
127 private _write(s: string) {
128 if (this._isStartOfLine) {

Callers

nothing calls this directly

Calls 2

writeNodeMethod · 0.95
toStringMethod · 0.95

Tested by

no test coverage detected