Merge branch 'tune-tests' into reset

This commit is contained in:
alex 2022-05-01 22:19:40 +01:00
commit 1949071259
10 changed files with 8290 additions and 755 deletions

View file

@ -81,6 +81,10 @@ export class Hap {
'(' + (this.whole == undefined ? '~' : this.whole.show()) + ', ' + this.part.show() + ', ' + this.value + ')'
);
}
showWhole() {
return `${this.whole == undefined ? '~' : this.whole.show()}: ${this.value}`;
}
showWhole() {
return `${this.whole == undefined ? '~' : this.whole.show()}: ${this.value}`;