(noteString: number)
| 1247 | } |
| 1248 | |
| 1249 | public hasNoteOnString(noteString: number): boolean { |
| 1250 | return this.noteStringLookup.has(noteString); |
| 1251 | } |
| 1252 | |
| 1253 | public getNoteWithRealValue(noteRealValue: number): Note | null { |
| 1254 | if (this.noteValueLookup.has(noteRealValue)) { |
no test coverage detected