revert add _processParts()
This commit is contained in:
yaxu 2025-10-23 16:07:42 +02:00
parent 3d55567445
commit 7071dec775

View file

@ -62,12 +62,7 @@ export class Pattern {
this.__steps = steps === undefined ? undefined : Fraction(steps); this.__steps = steps === undefined ? undefined : Fraction(steps);
} }
_processParts() {
return this.withHap((hap) => hap.withContext((c) => ({ ...c, processParts: true })));
}
setSteps(steps) { setSteps(steps) {
// TODO should this be pure?
this._steps = steps; this._steps = steps;
return this; return this;
} }