(index)
| 42 | } |
| 43 | |
| 44 | startQueue(index) { |
| 45 | this.kStartOfQueue = index; |
| 46 | this.currentFile = this.queue[index].filename; |
| 47 | this.interval = setInterval(() => { |
| 48 | if (this.completedRuns === this.scheduledRuns) { |
| 49 | clearInterval(this.interval); |
| 50 | } else { |
| 51 | this.updateProgress(); |
| 52 | } |
| 53 | }, 1000); |
| 54 | } |
| 55 | |
| 56 | startSubqueue(data, index) { |
| 57 | // This subqueue is generated by a new benchmark |
no test coverage detected