(noteString: number)
| 835 | } |
| 836 | |
| 837 | public getNoteOnString(noteString: number): Note | null { |
| 838 | if (this.noteStringLookup.has(noteString)) { |
| 839 | return this.noteStringLookup.get(noteString)!; |
| 840 | } |
| 841 | return null; |
| 842 | } |
| 843 | |
| 844 | private _calculateDuration(): number { |
| 845 | if (this.overrideDisplayDuration !== undefined) { |
no test coverage detected