(noteRealValue: number)
| 1251 | } |
| 1252 | |
| 1253 | public getNoteWithRealValue(noteRealValue: number): Note | null { |
| 1254 | if (this.noteValueLookup.has(noteRealValue)) { |
| 1255 | return this.noteValueLookup.get(noteRealValue)!; |
| 1256 | } |
| 1257 | return null; |
| 1258 | } |
| 1259 | |
| 1260 | public chain(sharedDataBag: Map<string, unknown> | null = null) { |
| 1261 | for (const n of this.notes) { |
no test coverage detected