* Adds the given sync point to the list of sync points for this bar. * @param syncPoint The sync point to add.
(syncPoint: Automation)
| 439 | * @param syncPoint The sync point to add. |
| 440 | */ |
| 441 | public addSyncPoint(syncPoint: Automation) { |
| 442 | if (!this.syncPoints) { |
| 443 | this.syncPoints = []; |
| 444 | } |
| 445 | this.syncPoints!.push(syncPoint); |
| 446 | } |
| 447 | |
| 448 | public finish(sharedDataBag: Map<string, unknown>) { |
| 449 | let beamingRules = this.beamingRules; |
no test coverage detected