()
| 639 | abstract getValue(): float; |
| 640 | |
| 641 | isPlaying(): boolean { |
| 642 | return !this.isPaused && !this.hasFinished(); |
| 643 | } |
| 644 | |
| 645 | hasFinished(): boolean { |
| 646 | return this.elapsedTime === this.totalDuration; |
nothing calls this directly
no test coverage detected