(jumpToDest: boolean)
| 647 | } |
| 648 | |
| 649 | stop(jumpToDest: boolean): void { |
| 650 | this.elapsedTime = this.totalDuration; |
| 651 | if (jumpToDest) { |
| 652 | this._updateValue(); |
| 653 | } |
| 654 | } |
| 655 | |
| 656 | resume(): void { |
| 657 | this.isPaused = false; |
nothing calls this directly
no test coverage detected