(name, trackFile)
| 44 | // -pause |
| 45 | |
| 46 | var Song = function(name, trackFile) { |
| 47 | this.name = name; |
| 48 | this.track = new Audio(trackFile); |
| 49 | }; |
| 50 | |
| 51 | Song.prototype.play = function() { |
| 52 | this.track.play(); |
nothing calls this directly
no outgoing calls
no test coverage detected