(s: IWriteable)
| 180 | public static readonly RestEventId = 0x01; |
| 181 | |
| 182 | public override writeTo(s: IWriteable): void { |
| 183 | // sysex |
| 184 | s.writeByte(0xf0); |
| 185 | |
| 186 | // data |
| 187 | const data = ByteBuffer.withCapacity(16); |
| 188 | data.writeByte(AlphaTabSysExEvent.AlphaTabManufacturerId); |
| 189 | this.writeEventData(data); |
| 190 | // syntactic sysex end |
| 191 | data.writeByte(0xf7); |
| 192 | |
| 193 | MidiFile.writeVariableInt(s, data.length); |
| 194 | data.copyTo(s); |
| 195 | } |
| 196 | |
| 197 | protected abstract writeEventData(s: IWriteable): void; |
| 198 | } |
nothing calls this directly
no test coverage detected