MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / addSyncPoint

Method addSyncPoint

packages/alphatab/src/model/MasterBar.ts:441–446  ·  view source on GitHub ↗

* Adds the given sync point to the list of sync points for this bar. * @param syncPoint The sync point to add.

(syncPoint: Automation)

Source from the content-addressed store, hash-verified

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;

Callers 3

_buildModelMethod · 0.80
setPropertyMethod · 0.80
applyFlatSyncPointsMethod · 0.80

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected