()
| 345 | public style?: ScoreStyle; |
| 346 | |
| 347 | public rebuildRepeatGroups(): void { |
| 348 | this._currentRepeatGroup = null; |
| 349 | this._openedRepeatGroups = []; |
| 350 | this._properlyOpenedRepeatGroups = 0; |
| 351 | for (const bar of this.masterBars) { |
| 352 | this._addMasterBarToRepeatGroups(bar); |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | public addMasterBar(bar: MasterBar): void { |
| 357 | bar.score = this; |
no test coverage detected