(staff: Staff, voiceIndex: number)
| 555 | private _currentVoice!: Voice; |
| 556 | |
| 557 | private _newBar(staff: Staff, voiceIndex: number) { |
| 558 | this._currentVoiceState.currentBarIndex++; |
| 559 | this._currentBar = this._getOrCreateBar(staff, this._currentVoiceState.currentBarIndex); |
| 560 | this._currentVoiceState.currentBarDuration = this._currentBar.masterBar.calculateDuration(false); |
| 561 | this._currentVoiceState.currentBarComplete = false; |
| 562 | this._currentVoiceState.currentPosition = 0; |
| 563 | this._ensureVoice(staff, voiceIndex); |
| 564 | } |
| 565 | |
| 566 | private _parseVoice( |
| 567 | staffId: string, |
no test coverage detected