| 312 | return this.instance = createjs.Sound.play(this.src) |
| 313 | } else { |
| 314 | var f = event => { |
| 315 | if (event.src === this.src) { this.instance = createjs.Sound.play(event.src) } |
| 316 | return createjs.Sound.removeEventListener('fileload', f) |
| 317 | } |
| 318 | return createjs.Sound.addEventListener('fileload', f) |
| 319 | } |
| 320 | } |
nothing calls this directly
no outgoing calls
no test coverage detected