(trackId: string, track: Track, node: XmlNode)
| 1204 | } |
| 1205 | |
| 1206 | private _parseSounds(trackId: string, track: Track, node: XmlNode): void { |
| 1207 | for (const c of node.childElements()) { |
| 1208 | switch (c.localName) { |
| 1209 | case 'Sound': |
| 1210 | this._parseSound(trackId, track, c); |
| 1211 | break; |
| 1212 | } |
| 1213 | } |
| 1214 | } |
| 1215 | |
| 1216 | private _parseSound(trackId: string, track: Track, node: XmlNode): void { |
| 1217 | const sound = new GpifSound(); |
no test coverage detected