(staff: Staff, node: XmlNode)
| 938 | } |
| 939 | |
| 940 | private _parseStaff(staff: Staff, node: XmlNode): void { |
| 941 | for (const c of node.childElements()) { |
| 942 | switch (c.localName) { |
| 943 | case 'Properties': |
| 944 | this._parseStaffProperties(staff, c); |
| 945 | break; |
| 946 | } |
| 947 | } |
| 948 | } |
| 949 | |
| 950 | private _parseStaffProperties(staff: Staff, node: XmlNode): void { |
| 951 | for (const c of node.childElements()) { |
no test coverage detected