(note: alphaTab.importer.alphaTex.AlphaTexNoteNode, offset: number)
| 111 | } |
| 112 | |
| 113 | function createNoteHover(note: alphaTab.importer.alphaTex.AlphaTexNoteNode, offset: number): Hover | null { |
| 114 | if (note?.noteEffects) { |
| 115 | const hover = createPropertiesHover(note.noteEffects, [noteProperties, beatProperties], offset); |
| 116 | if (hover != null) { |
| 117 | return hover; |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | return null; |
| 122 | } |
| 123 | |
| 124 | function createPropertiesHover( |
| 125 | properties: alphaTab.importer.alphaTex.AlphaTexPropertiesNode, |
no test coverage detected