(keycode: number)
| 349 | return true |
| 350 | } |
| 351 | key_up(keycode: number): maa.MaybePromise<boolean> { |
| 352 | console.log('on MyController.key_up, keycode', keycode) |
| 353 | this.count += 1 |
| 354 | return true |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | async function main() { |
nothing calls this directly
no outgoing calls
no test coverage detected